.news-page {
    min-height: 100vh;
    color: #15213a;
    background:
        radial-gradient(circle at 12% 20%, rgba(225, 174, 45, 0.09), transparent 27rem),
        #f3f6fa;
}

.news-page .main-navigation .news-navigation-current {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
}

.news-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 78px;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(2, 15, 38, 0.97), rgba(6, 49, 104, 0.93)),
        url("images/about-group-photo.jpg") center 43% / cover;
}

.news-hero::after {
    position: absolute;
    right: -5rem;
    bottom: -10rem;
    width: 26rem;
    height: 26rem;
    border: 1px solid rgba(225, 174, 45, 0.22);
    border-radius: 50%;
    content: "";
}

.news-hero-content {
    position: relative;
    z-index: 1;
    max-width: 830px;
}

.news-eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.45rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.news-hero p:last-child {
    max-width: 680px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.news-feed {
    padding: 76px 0 96px;
}

.news-feed-container {
    max-width: 1060px;
}

.news-feed-heading {
    margin-bottom: 30px;
}

.news-feed-heading h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.news-article {
    overflow: hidden;
    border: 1px solid rgba(10, 35, 73, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(8, 31, 68, 0.11);
}

.news-article-visual {
    position: relative;
    height: clamp(290px, 48vw, 540px);
    margin: 0;
    overflow: hidden;
    background: var(--navy-dark);
}

.news-article-visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    content: "";
    background: linear-gradient(transparent, rgba(1, 11, 28, 0.75));
}

.news-article-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-article-visual figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 700;
}

.news-article-body {
    max-width: 850px;
    margin: 0 auto;
    padding: clamp(34px, 7vw, 70px);
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #637088;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-article-meta p {
    margin: 0;
}

.news-article-meta span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.news-article-body h2 {
    max-width: 780px;
    margin: 0 0 25px;
    color: var(--navy-dark);
    font-size: clamp(2rem, 4.6vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.news-article-body p {
    margin: 0 0 21px;
    color: #435069;
    font-size: 1.03rem;
    line-height: 1.82;
}

.news-article-body .news-article-lead {
    color: #273550;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.72;
}

.news-article-body blockquote {
    margin: 38px 0 0;
    padding: 22px 25px;
    color: var(--navy-dark);
    border-left: 5px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: #f5f7fa;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.6;
}

.news-footer {
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-dark);
}

.news-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.news-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    font-weight: 900;
}

.news-footer-brand img {
    width: 42px;
    height: 42px;
    padding: 2px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
}

.news-footer p {
    margin: 0;
    font-size: 0.82rem;
}

@media (max-width: 820px) {
    .news-hero {
        padding: 70px 0 64px;
    }

    .news-feed {
        padding: 55px 0 72px;
    }

    .news-article {
        border-radius: 18px;
    }

    .news-article-visual {
        height: 300px;
    }

    .news-article-visual img {
        object-position: center;
    }
}

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

    .news-article-visual {
        height: 245px;
    }

    .news-article-body {
        padding: 30px 22px 36px;
    }

    .news-article-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .news-article-meta span {
        display: none;
    }

    .news-footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}
