.news-main {
    padding-top: 118px;
    overflow: hidden;
    background: var(--xz-white);
}

.news-main h1,
.news-main h2,
.news-main h3,
.news-main p,
.news-main figure {
    margin-top: 0;
}

.news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--xz-red);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.news-eyebrow::before {
    content: "";
    width: 32px;
    height: 3px;
    background: currentColor;
}

.news-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    color: var(--xz-white);
    isolation: isolate;
}

.news-hero__image,
.news-hero__overlay {
    position: absolute;
    inset: 0;
}

.news-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.news-hero__overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(9, 17, 35, 0.94) 0%, rgba(9, 17, 35, 0.72) 44%, rgba(9, 17, 35, 0.18) 100%);
}

.news-hero__content {
    padding-top: 68px;
    padding-bottom: 62px;
}

.news-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.news-breadcrumb a {
    text-decoration: none;
}

.news-hero h1 {
    max-width: 760px;
    margin-bottom: 16px;
    font-family: var(--xz-font-display);
    font-size: var(--xz-type-display);
    font-weight: 800;
    line-height: 1.05;
}

.news-hero__content > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.news-latest {
    padding: 80px 0 86px;
    background: var(--xz-white);
}

.news-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 36px;
}

.news-section-head h2,
.news-archive__head h2 {
    margin-bottom: 0;
    color: var(--xz-navy);
    font-family: var(--xz-font-display);
    font-size: var(--xz-type-section);
    font-weight: 800;
    line-height: 1.15;
}

.news-section-head > p {
    margin-bottom: 0;
    color: var(--xz-steel);
    font-size: 14px;
    line-height: 1.75;
}

.news-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    background: var(--xz-surface-soft);
    border: 1px solid var(--xz-line);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-featured:hover {
    border-color: rgba(216, 65, 32, 0.34);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.news-featured__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.news-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-featured:hover .news-featured__media img {
    transform: scale(1.025);
}

.news-featured__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(34px, 4.5vw, 62px);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-bottom: 22px;
    color: var(--xz-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.news-meta span {
    position: relative;
    padding-left: 18px;
}

.news-meta span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--xz-red);
    transform: translateY(-50%);
}

.news-featured h2 {
    margin-bottom: 18px;
    color: var(--xz-navy);
    font-family: var(--xz-font-display);
    font-size: var(--xz-type-subsection);
    font-weight: 800;
    line-height: 1.2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-featured h2 a,
.news-card h3 a {
    text-decoration: none;
}

.news-featured__copy > p {
    margin-bottom: 28px;
    color: var(--xz-steel);
    font-size: 14px;
    line-height: 1.78;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-read-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--xz-red);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.news-read-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.news-read-link:hover svg {
    transform: translateX(4px);
}

.news-archive {
    padding: 80px 0 92px;
    background: var(--xz-surface-soft);
    border-top: 1px solid var(--xz-line);
}

.news-archive__head {
    margin-bottom: 34px;
    text-align: center;
}

.news-archive__head .news-eyebrow {
    justify-content: center;
}

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

.news-card {
    min-width: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe4ea;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.035);
}

.news-card__media span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 9px 11px;
    background: var(--xz-red);
    color: var(--xz-white);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.news-card__body {
    padding-top: 18px;
}

.news-card time {
    display: block;
    margin-bottom: 10px;
    color: var(--xz-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.news-card h3 {
    margin-bottom: 12px;
    color: var(--xz-navy);
    font-family: var(--xz-font-display);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.38;
}

.news-card p {
    margin-bottom: 18px;
    color: var(--xz-steel);
    font-size: 13px;
    line-height: 1.7;
}

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

    .news-featured__media {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 860px) {
    .news-main {
        padding-top: 88px;
    }

    .news-section-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

@media (max-width: 640px) {
    .news-main {
        padding-top: 72px;
    }

    .news-hero {
        min-height: 390px;
    }

    .news-hero__overlay {
        background: rgba(9, 17, 35, 0.78);
    }

    .news-latest,
    .news-archive {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .news-featured__copy {
        padding: 28px 22px 32px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .news-featured__media img,
    .news-card__media img,
    .news-read-link svg {
        transition: none;
    }
}
