.news-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news-page-hero {
    padding: 24px 0 8px;
}

.news-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 24px;
    align-items: stretch;
}

.news-page-hero__content,
.news-page-hero__card,
.featured-news-card,
.news-overview-card,
.news-empty-state {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-page-hero__content::before,
.news-page-hero__card::before,
.featured-news-card::before,
.news-overview-card::before,
.news-empty-state::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%);
    opacity: 0.65;
}

.news-page-hero__content {
    padding: 38px;
}

.news-page-hero__content h1 {
    margin-top: 14px;
    max-width: 780px;
    line-height: 1.08;
}

.news-page-hero__text {
    margin-top: 18px;
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.82);
}

.news-page-hero__card {
    padding: 28px;
}

.news-page-hero__card-title {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-page-hero__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.news-page-hero__list-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-page-hero__list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 140, 255, 0.35);
    background: rgba(255,255,255,0.05);
}

.news-section {
    padding-top: 4px;
}

.section-intro--split {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.featured-news-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 280px;
    padding: 26px;
    text-decoration: none;
}

.featured-news-card:hover,
.news-overview-card:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 140, 255, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
}

.featured-news-card--large {
    min-height: 280px;
    grid-column: auto;
    border-color: rgba(243, 201, 105, 0.2);
    background: linear-gradient(180deg, rgba(243, 201, 105, 0.04), rgba(255,255,255,0.018));
}

.featured-news-card__meta,
.news-overview-card__meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    flex: 0 0 auto;
    width: fit-content;
    max-width: none;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(243, 201, 105, 0.1);
    border: 1px solid rgba(243, 201, 105, 0.18);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-badge--subtle {
    background: rgba(91, 140, 255, 0.08);
    border-color: rgba(91, 140, 255, 0.16);
    color: #bfd0ff;
}

.news-date {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: right;
}

.featured-news-card h3,
.news-overview-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    line-height: 1.22;
    color: var(--text);
}

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

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

.featured-news-card__summary,
.news-overview-card__summary {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.82);
    line-height: 1.68;
    margin: 0;
}

.news-card__link {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-overview-card {
    padding: 24px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 240px;
    text-decoration: none;
}

.news-empty-state {
    padding: 28px;
}

.news-empty-state h3 {
    margin: 0 0 10px;
}

.news-empty-state p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

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

@media (max-width: 900px) {
    .news-page-hero__grid,
    .featured-news-grid,
    .news-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .news-page {
        gap: 20px;
    }

    .news-page-hero {
        padding-top: 14px;
    }

    .news-page-hero__content,
    .news-page-hero__card,
    .featured-news-card,
    .news-overview-card,
    .news-empty-state {
        padding: 20px;
        border-radius: 20px;
    }

    .news-page-hero__content h1 {
        margin-top: 12px;
        font-size: clamp(1.95rem, 7vw, 2.75rem);
    }

    .news-page-hero__text {
        margin-top: 14px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .featured-news-card__meta,
    .news-overview-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date {
        text-align: left;
    }

    .featured-news-card,
    .featured-news-card--large,
    .news-overview-card {
        min-height: auto;
    }

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

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

    .news-badge {
        white-space: normal;
    }
}