/**
 * Blog pages only – typography, lists, and spacing for blog detail content.
 */

/* Blog listing page (/blogs) */
.blog-listing {
    max-width: 920px;
    margin: 0 auto;
}

.blog-listing-header {
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e8e8e8;
}

.blog-listing-header h1 {
    color: #184470;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-transform: none;
}

.blog-listing-header p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.75;
    color: #606060;
}

.blog-card {
    background: #fffcf8;
    border: 1px solid #ebebeb;
    border-left: 4px solid #184470;
    padding: 28px 30px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:last-child {
    margin-bottom: 0;
}

.blog-card:hover {
    box-shadow: 0 4px 18px rgba(24, 68, 112, 0.1);
    transform: translateY(-2px);
}

.blog-card h2 {
    color: #184470;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.4;
    text-transform: none;
}

.blog-card h2 a {
    color: #184470;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #0f2d4a;
    text-decoration: underline;
}

.blog-card p {
    margin: 0 0 16px;
    line-height: 1.85;
    font-size: 15px;
    color: #505050;
}

.blog-card .blog-read-more {
    display: inline-block;
    color: #184470;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-card .blog-read-more:hover {
    color: #0f2d4a;
    text-decoration: underline;
}

.blog-card .blog-read-more::after {
    content: " \2192";
}

/* Blog detail pages */
.blog-content {
    max-width: 920px;
    margin: 0 auto;
}

.blog-content p {
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: 15px;
    color: #505050;
}

.blog-content h1,
.blog-content h2 {
    color: #184470;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.35;
    text-transform: none;
}

.blog-content h1 {
    font-size: 32px;
    margin-top: 0;
}

.blog-content h2 {
    font-size: 26px;
}

.blog-content h3 {
    color: #184470;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-content h4,
.blog-content h5 {
    color: #303030;
    font-family: 'Playball', cursive;
    font-size: 22px;
    font-weight: 400;
    margin-top: 26px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content ul,
.blog-content ol {
    list-style: disc outside;
    margin: 0 0 22px 0;
    padding-left: 28px;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content ul li,
.blog-content ol li {
    margin-bottom: 10px;
    line-height: 1.75;
    font-size: 15px;
    color: #505050;
    display: list-item;
}

.blog-content ul li::marker {
    color: #184470;
}

.blog-content ol li::marker {
    color: #184470;
    font-weight: 600;
}

.blog-content a {
    color: #184470;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #0f2d4a;
}

.blog-content strong {
    color: #303030;
    font-weight: 600;
}

.blog-content .blog-info-block {
    background: #fffcf8;
    border-left: 4px solid #184470;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.blog-content .blog-info-block p:last-child {
    margin-bottom: 0;
}

.blog-content .blog-checklist {
    list-style: none;
    padding-left: 0;
}

.blog-content .blog-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    display: block;
}

.blog-content .blog-checklist li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 1px;
    color: #184470;
    font-weight: 700;
}

.blog-content .blog-menu-item {
    margin-bottom: 14px;
}

.blog-content .blog-menu-item strong {
    display: block;
    margin-bottom: 4px;
    color: #184470;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
}

.blog-content h2 a,
.blog-content h2 a:hover {
    color: #184470;
    text-decoration: none;
}

.blog-content h2 a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .blog-listing-header h1 {
        font-size: 26px;
    }

    .blog-card {
        padding: 22px 20px;
    }

    .blog-card h2 {
        font-size: 20px;
    }

    .blog-content h1 {
        font-size: 26px;
    }

    .blog-content h2 {
        font-size: 22px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    .blog-content ul,
    .blog-content ol {
        padding-left: 22px;
    }
}
