.blog-hero {
    background: #f7f8fb;
    padding: 132px 0 64px;
}

.blog-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.blog-hero-copy {
    padding-top: 18px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(199, 154, 74, 0.1);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: #243041;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.blog-hero p {
    margin: 0;
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.85;
    color: #70798a;
    font-weight: 500;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.blog-hero-meta-item {
    min-width: 132px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.blog-hero-meta-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 800;
}

.blog-hero-meta-item span {
    display: block;
    color: #6f7788;
    font-size: 0.86rem;
    line-height: 1.5;
    font-weight: 600;
}

.blog-topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.blog-topic-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(199, 154, 74, 0.1);
    color: #735c2e;
    font-size: 0.86rem;
    font-weight: 700;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.blog-featured-image-link {
    display: block;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    padding: 28px 28px 26px;
}

.blog-featured-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(199, 154, 74, 0.1);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-featured-body h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.35;
    font-weight: 800;
}

.blog-featured-body p {
    margin: 0 0 20px;
    max-width: none;
    color: #70798a;
    font-size: 0.95rem;
    line-height: 1.85;
    flex: 1;
}

.blog-list-section {
    background: #ffffff;
    padding: 68px 0 88px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #f8f8fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
    border-color: rgba(199, 154, 74, 0.18);
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-category {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-details-date {
    color: #8a93a3;
    font-size: 0.82rem;
    font-weight: 500;
}

.blog-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-title-link {
    color: #243041;
    text-decoration: none;
}

.blog-title-link:hover {
    color: var(--gold);
}

.blog-card p {
    margin: 0 0 18px;
    color: #7b8494;
    font-size: 0.92rem;
    line-height: 1.8;
    font-weight: 500;
    flex: 1;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-read-link:hover {
    opacity: 0.88;
}

.blog-empty-state {
    max-width: 560px;
    margin: 28px auto 0;
    padding: 28px 24px;
    border-radius: 22px;
    background: #f8f8fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.blog-empty-state p {
    margin: 0;
    color: #70798a;
    font-size: 0.96rem;
    line-height: 1.8;
    font-weight: 500;
}

.blog-cta-section {
    background: #eef0f3;
    padding: 74px 0 88px;
    text-align: center;
}

.blog-cta-section h2 {
    margin: 0 0 24px;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: -0.03em;
}

body.rtl .blog-card-body,
body.rtl .blog-hero-copy,
body.rtl .blog-featured-body {
    text-align: right;
}

body.rtl .blog-meta-row {
    flex-direction: row-reverse;
}

body.rtl .blog-hero-meta,
body.rtl .blog-topic-chips {
    justify-content: flex-start;
}

body.rtl .blog-read-link i {
    transform: scaleX(-1);
}

body.dark-mode .blog-hero {
    background: #09152a;
}

body.dark-mode .blog-hero h1,
body.dark-mode .blog-featured-body h2,
body.dark-mode .blog-title-link {
    color: #eef3fb;
}

body.dark-mode .blog-hero p,
body.dark-mode .blog-featured-body p,
body.dark-mode .blog-card p,
body.dark-mode .blog-details-date,
body.dark-mode .blog-empty-state p,
body.dark-mode .blog-hero-meta-item span {
    color: rgba(230, 236, 247, 0.72);
}

body.dark-mode .blog-hero-meta-item,
body.dark-mode .blog-featured-card,
body.dark-mode .blog-card,
body.dark-mode .blog-empty-state {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

body.dark-mode .blog-topic-chip {
    background: rgba(199, 154, 74, 0.12);
    color: rgba(238, 243, 251, 0.92);
}

body.dark-mode .blog-list-section {
    background: #0c1730;
}

body.dark-mode .blog-cta-section {
    background: #09152a;
}

@media (max-width: 1100px) {
    .blog-hero-shell {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 116px 0 52px;
    }

    .blog-hero h1 {
        font-size: 2.3rem;
    }

    .blog-hero p {
        font-size: 0.96rem;
    }

    .blog-hero-meta-item {
        flex: 1 1 140px;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .blog-featured-image {
        height: 240px;
    }

    .blog-featured-body {
        padding: 22px 18px 20px;
    }

    .blog-list-section,
    .blog-cta-section {
        padding: 62px 0;
    }

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

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

    .blog-card-body {
        padding: 18px 18px 20px;
    }

    .blog-cta-section h2 {
        font-size: 1.9rem;
    }
}
