.news-page-head {
    max-width: 820px;
    margin-bottom: 0;
}

.news-page-head h1 {
    max-width: 780px;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.news-page-head .lead {
    max-width: 700px;
}

.news-section {
    overflow: hidden;
}

.news-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 24px 58px rgba(7, 56, 79, 0.13);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.news-featured:hover,
.news-featured:focus-within {
    border-color: rgba(19, 120, 165, 0.34);
    box-shadow: 0 30px 68px rgba(7, 56, 79, 0.18);
    transform: translateY(-4px);
}

.news-featured-media,
.news-card-media {
    position: relative;
    display: grid;
    min-width: 0;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.82), transparent 34%),
        linear-gradient(135deg, #dceef3 0%, #e1f4eb 55%, #f7ebcf 100%);
}

.news-featured-media {
    min-height: 470px;
}

.news-featured-media::after,
.news-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 62%, rgba(7, 56, 79, 0.1));
}

.news-featured-media img,
.news-card-media img,
.article-wrap .news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.news-featured:hover .news-featured-media img,
.news-featured:focus-within .news-featured-media img,
.news-card:hover .news-card-media img,
.news-card:focus-within .news-card-media img {
    transform: scale(1.035);
}

.news-placeholder {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
    color: var(--color-blue-900);
    text-align: center;
}

.news-placeholder::before,
.news-placeholder::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(14, 95, 134, 0.1);
    border-radius: 50%;
}

.news-placeholder::before {
    width: 190px;
    height: 190px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.news-placeholder::after {
    width: 245px;
    height: 245px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.news-placeholder-mark {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 18px;
    background: var(--color-blue-900);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(7, 56, 79, 0.2);
}

.news-placeholder-copy {
    color: rgba(7, 56, 79, 0.66);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-placeholder-featured {
    gap: 16px;
}

.news-placeholder-featured .news-placeholder-mark {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    font-size: 2.8rem;
}

.news-placeholder-featured .news-placeholder-copy {
    font-size: 0.88rem;
}

.news-featured-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(32px, 5vw, 58px);
}

.news-featured-body h2 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 18px;
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-featured-body h2 a,
.news-body h3 a {
    color: inherit;
    text-decoration: none;
    text-wrap: balance;
}

.news-featured-body h2 a:hover,
.news-featured-body h2 a:focus-visible,
.news-body h3 a:hover,
.news-body h3 a:focus-visible {
    color: var(--color-blue-700);
}

.news-featured-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 20px;
    color: #465c67;
    font-size: 1.05rem;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-meta {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 12px;
}

.news-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: #e4f4ec;
    color: #1d6748;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.075em;
    line-height: 1;
    padding: 7px 11px;
    text-transform: uppercase;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #526771;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.015em;
}

.news-date::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-gold-500);
    box-shadow: 0 0 0 3px rgba(214, 155, 45, 0.14);
}

.news-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    border: 1px solid rgba(14, 95, 134, 0.2);
    border-radius: 10px;
    background: #f4f9fb;
    color: var(--color-blue-900);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    padding: 13px 16px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.news-cta::after {
    content: "\2192";
    font-size: 1.15rem;
    line-height: 0;
    transition: transform 0.2s ease;
}

.news-cta:hover,
.news-cta:focus-visible {
    border-color: var(--color-blue-800);
    background: var(--color-blue-800);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(7, 56, 79, 0.16);
    transform: translateY(-2px);
}

.news-cta:hover::after,
.news-cta:focus-visible::after {
    transform: translateX(4px);
}

.news-cta:active {
    box-shadow: 0 5px 12px rgba(7, 56, 79, 0.14);
    transform: translateY(0);
}

.news-cta-primary {
    margin-top: 28px;
    border-color: var(--color-blue-800);
    background: var(--color-blue-800);
    color: var(--color-white);
    padding-inline: 20px;
}

.news-cta-primary:hover,
.news-cta-primary:focus-visible {
    border-color: var(--color-blue-900);
    background: var(--color-blue-900);
}

.news-list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: clamp(60px, 8vw, 92px) 0 28px;
}

.news-list-head h2 {
    margin-top: 8px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 26px;
}

.news-card {
    display: grid;
    min-width: 0;
    min-height: 100%;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: var(--color-white);
    box-shadow: 0 10px 28px rgba(7, 56, 79, 0.075);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.news-card:hover,
.news-card:focus-within {
    border-color: rgba(19, 120, 165, 0.32);
    box-shadow: 0 22px 44px rgba(7, 56, 79, 0.14);
    transform: translateY(-6px);
}

.news-card-media {
    aspect-ratio: 16 / 9;
}

.news-card-media .news-placeholder::before {
    width: 120px;
    height: 120px;
}

.news-card-media .news-placeholder::after {
    width: 160px;
    height: 160px;
}

.news-card-media .news-placeholder-mark {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 1.7rem;
}

.news-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.news-body h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.7em;
    margin-top: 16px;
    font-size: clamp(1.18rem, 1.6vw, 1.38rem);
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-body > p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 4.8em;
    margin-top: 13px;
    margin-bottom: 22px;
    color: #536771;
    font-size: 0.96rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-body .news-cta {
    margin-top: auto;
}

.news-card:hover .news-cta,
.news-card:focus-within .news-cta {
    border-color: rgba(14, 95, 134, 0.34);
    background: #eaf4f7;
}

.news-card:hover .news-cta:hover,
.news-card:focus-within .news-cta:focus-visible {
    border-color: var(--color-blue-800);
    background: var(--color-blue-800);
    color: var(--color-white);
}

.news-empty-state {
    display: grid;
    max-width: 720px;
    justify-items: start;
    gap: 15px;
}

.news-empty-state .news-placeholder-mark {
    background: var(--color-white);
    color: var(--color-blue-900);
}

.article-wrap {
    max-width: 820px;
    margin-inline: auto;
}

.article-wrap .news-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf4f7, #e5f6ee);
    box-shadow: 0 18px 42px rgba(7, 56, 79, 0.12);
}

.article-meta {
    color: var(--color-green-700);
    font-weight: 800;
    margin-bottom: 16px;
}

.article-content {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

@media (max-width: 980px) {
    .news-featured {
        grid-template-columns: 1fr;
    }

    .news-featured-media {
        min-height: auto;
        aspect-ratio: 16 / 8;
    }

    .news-featured-body {
        justify-content: flex-start;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .news-page-head h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .news-featured {
        min-height: 0;
        border-radius: 14px;
    }

    .news-featured-media {
        aspect-ratio: 4 / 3;
    }

    .news-featured-body {
        padding: 27px 22px 30px;
    }

    .news-featured-body h2 {
        margin-top: 15px;
        font-size: clamp(1.75rem, 8.5vw, 2.35rem);
        -webkit-line-clamp: 4;
    }

    .news-featured-body > p {
        margin-top: 16px;
        font-size: 1rem;
        -webkit-line-clamp: 5;
    }

    .news-cta-primary {
        width: 100%;
        align-self: stretch;
        margin-top: 24px;
    }

    .news-list-head {
        margin-top: 56px;
    }

    .news-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .news-card {
        border-radius: 12px;
    }

    .news-body {
        padding: 22px;
    }

    .news-body h3 {
        min-height: 0;
        font-size: 1.3rem;
    }

    .news-body > p {
        min-height: 0;
        margin-bottom: 0;
    }

    .news-body .news-cta {
        width: 100%;
        align-self: stretch;
        margin-top: 22px;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-featured,
    .news-card,
    .news-featured-media img,
    .news-card-media img,
    .news-cta,
    .news-cta::after {
        transition: none;
    }

    .news-featured:hover,
    .news-featured:focus-within,
    .news-card:hover,
    .news-card:focus-within,
    .news-cta:hover,
    .news-cta:focus-visible {
        transform: none;
    }
}
