.article-hero {
    padding: 180px 5% 70px;
    background-image:
        linear-gradient(180deg, rgba(248, 249, 250, 0.92) 0%, rgba(243, 240, 247, 0.94) 100%),
        url('image/BACKGROUND_IMAGE.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(193, 155, 84, 0.14), transparent 34%),
        radial-gradient(circle at 82% 4%, rgba(35, 27, 56, 0.08), transparent 28%);
    pointer-events: none;
}

.article-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.article-back-link:hover {
    color: var(--gold);
}

.article-hero .news-category {
    margin-bottom: 18px;
}

.article-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 18px;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.article-page {
    padding: 0 5% 90px;
}

.article-shell {
    max-width: 860px;
    margin: -28px auto 0;
    position: relative;
    z-index: 2;
}

.article-intro {
    font-size: 1.06rem;
    line-height: 1.86;
    color: var(--text-main);
    margin-bottom: 28px;
}

.article-section {
    margin-bottom: 34px;
}

.article-section h2 {
    font-size: 1.45rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-section p {
    font-size: 1rem;
    line-height: 1.84;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.article-section ul {
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--text-muted);
}

.article-callout {
    margin: 18px 0 28px;
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(193, 155, 84, 0.08);
    border: 1px solid rgba(193, 155, 84, 0.16);
}

.article-callout h3 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.article-callout p {
    font-size: 0.96rem;
    line-height: 1.76;
    color: var(--text-muted);
}

.article-links {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.article-links a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.article-links a:hover {
    color: var(--gold);
}

.article-cta {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 160px 5% 64px;
    }

    .article-hero h1 {
        font-size: 2.25rem;
    }

    .article-shell {
        margin-top: -22px;
    }

    .article-intro,
    .article-section p {
        font-size: 0.98rem;
    }

    .article-cta .btn-primary,
    .article-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .article-hero h1 {
        font-size: 1.9rem;
    }

    .article-section h2 {
        font-size: 1.25rem;
    }
}
