/* ==================== BLOG — Header ==================== */
.blog-header {
    background: var(--navy);
    padding: 140px 0 60px;
    text-align: center;
    color: #fff;
}

.blog-header .section-eyebrow {
    color: var(--gold);
}

.blog-header-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-header-intro {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ==================== BLOG — Filters ==================== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-filter {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-filter:hover {
    border-color: var(--gold);
    color: var(--navy);
}

.blog-filter.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

/* ==================== BLOG — Main & Grid ==================== */
.blog-main {
    background: var(--bg);
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* ==================== BLOG — Card ==================== */
.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.25);
}

.blog-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 6px;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-read {
    color: var(--gold-dark);
    font-weight: 600;
}

.blog-card-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-body h2 a:hover {
    color: var(--gold-dark);
}

.blog-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-link:hover {
    gap: 0.6rem;
    color: var(--gold-dark);
}

/* ==================== BLOG — Empty State ==================== */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==================== BLOG — CTA Section ==================== */
.blog-cta-section {
    background: var(--bg-alt);
    padding: 4rem 0;
}

.blog-cta-box {
    text-align: center;
    background: var(--navy);
    color: #fff;
    padding: 3.5rem;
    border-radius: 20px;
}

.blog-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== ARTICLE PAGE ==================== */
.article-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg);
}

/* Breadcrumb */
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
    color: var(--navy);
}

.article-breadcrumb .current {
    color: var(--navy);
    font-weight: 600;
}

/* Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* Article Content */
.article-content {
    min-width: 0;
}

.article-header {
    margin-bottom: 2.5rem;
}

.article-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Cover Image */
.article-cover {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body — Typography */
.article-body {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-body strong {
    color: var(--navy);
    font-weight: 700;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(201, 162, 39, 0.06);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
}

.article-body blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--navy-mid);
}

/* Disclaimer */
.article-disclaimer {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    background: rgba(12, 26, 58, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.article-disclaimer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Author Box */
.article-author-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.article-author-avatar {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.article-author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.article-author-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== SIDEBAR ==================== */
.article-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-cta {
    background: var(--navy);
    color: #fff;
    padding: 2rem;
    border-radius: 16px;
}

.sidebar-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.sidebar-services,
.sidebar-contact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
}

.sidebar-services h4,
.sidebar-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.sidebar-services ul {
    list-style: none;
}

.sidebar-services li {
    margin-bottom: 0.5rem;
}

.sidebar-services a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sidebar-services a:hover {
    color: var(--gold-dark);
}

.sidebar-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

/* ==================== RELATED ARTICLES ==================== */
.article-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.article-related h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-sidebar > * {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 120px 0 40px;
    }

    .blog-header-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .blog-filter {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-author-box {
        flex-direction: column;
        text-align: center;
    }

    .article-sidebar {
        flex-direction: column;
    }

    .blog-cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-header-title {
        font-size: 1.75rem;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .blog-card-image {
        height: 160px;
    }
}
