.blog-details-hero {
    background: #f7f8fb;
    padding: 140px 0 74px;
    text-align: center;
}

.blog-details-hero-container {
    max-width: 900px;
}

.blog-details-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.blog-details-category {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-details-date {
    color: #8a93a3;
    font-size: 0.86rem;
    font-weight: 500;
}

.blog-details-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.12;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.blog-details-hero p {
    margin: 0 auto 18px;
    max-width: 760px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #7b8494;
    font-weight: 500;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #243041;
    font-size: 0.9rem;
    font-weight: 700;
}

    .blog-back-link:hover {
        color: var(--gold);
    }

.blog-details-content-section {
    background: #ffffff;
    padding: 0 0 88px;
}

.blog-details-layout {
    max-width: 920px;
}

.blog-article-card {
    overflow: hidden;
    border-radius: 20px;
    background: #f8f8fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.blog-article-image-wrap {
    width: 100%;
}

.blog-article-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.blog-article-body {
    padding: 28px 26px 30px;
}

    .blog-article-body p {
        margin: 0 0 18px;
        color: #687183;
        font-size: 0.98rem;
        line-height: 1.95;
        font-weight: 500;
    }

        .blog-article-body p:last-child {
            margin-bottom: 0;
        }

.blog-details-cta-section {
    background: #eef0f3;
    padding: 74px 0 88px;
    text-align: center;
}

    .blog-details-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;
    }

/* RTL */
body.rtl .blog-article-body {
    text-align: right;
}

body.rtl .blog-back-link i {
    transform: scaleX(-1);
}

/* Dark mode */
body.dark-mode .blog-details-hero {
    background: #09152a;
}

    body.dark-mode .blog-details-hero p,
    body.dark-mode .blog-details-date {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .blog-back-link {
    color: #eef3fb;
}

body.dark-mode .blog-details-content-section {
    background: #0c1730;
}

body.dark-mode .blog-article-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
    box-shadow: none;
}

body.dark-mode .blog-article-body p {
    color: rgba(230,236,247,0.72);
}

body.dark-mode .blog-details-cta-section {
    background: #09152a;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-details-hero {
        padding: 120px 0 68px;
    }

        .blog-details-hero h1 {
            font-size: 2.2rem;
        }

        .blog-details-hero p {
            font-size: 0.96rem;
        }

    .blog-details-content-section,
    .blog-details-cta-section {
        padding-bottom: 70px;
    }

    .blog-article-image {
        height: 250px;
    }

    .blog-article-body {
        padding: 20px 18px 22px;
    }

        .blog-article-body p {
            font-size: 0.95rem;
            line-height: 1.9;
        }

    .blog-details-cta-section h2 {
        font-size: 1.9rem;
    }
}
