.news-hero {
    padding: 180px 5% 96px;
    text-align: center;
    background-image:
        linear-gradient(180deg, rgba(248, 249, 250, 0.9) 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;
}

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

.news-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.news-hero .badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(193, 155, 84, 0.4);
    background: rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.news-hero h1 {
    font-size: 3.45rem;
    line-height: 1.16;
    color: var(--brand-dark);
    margin-bottom: 22px;
}

.news-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-topics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.news-topics span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(35, 27, 56, 0.08);
    color: var(--brand-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.news-feed {
    padding: 90px 5%;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.news-card.featured {
    grid-column: span 2;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(35, 27, 56, 0.92) 100%);
}

.news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(193, 155, 84, 0.12);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.news-card h3 {
    font-size: 1.32rem;
    line-height: 1.42;
    color: var(--brand-dark);
    margin-bottom: 14px;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.76;
    margin-bottom: 26px;
}

.news-read-link {
    margin-top: auto;
    color: var(--brand-dark);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-read-link:hover {
    color: var(--gold);
}

@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card.featured {
        grid-column: span 2;
    }
}

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

    .news-hero h1 {
        font-size: 2.45rem;
    }

    .news-hero p {
        font-size: 0.98rem;
    }

    .news-feed {
        padding: 70px 5%;
    }

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

    .news-card.featured {
        grid-column: span 1;
    }
}

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

    .news-card h3 {
        font-size: 1.16rem;
    }

    .news-topics span {
        width: 100%;
        justify-content: center;
    }
}
