.news-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
}

.news-page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.news-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.04) 78%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 0, 0, 0.04) 48%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

.news-page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 70px 80px;
}

.news-page-hero__label {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.news-page-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(64px, 7vw, 115px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -4px;
}

.news-page-hero p {
    max-width: 560px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 300;
    line-height: 1.7;
}

.news-intro {
    width: 100%;
    padding: 110px 70px;
    background: #ffffff;
    color: #111111;
}

.news-intro__content {
    max-width: 950px;
}

.news-intro__content span {
    display: block;
    margin-bottom: 22px;
    color: #777777;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.news-intro__content h2 {
    max-width: 850px;
    margin: 0;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 4vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.news-intro__content p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    background: #111111;
    color: #ffffff;
}

.news-featured--empty {
    grid-template-columns: 1fr;
    min-height: 65vh;
}

.news-featured__media {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.news-featured__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.news-featured__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 80px;
}

.news-featured--empty .news-featured__info {
    min-height: 65vh;
}

.news-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 400;
}

.news-featured__info h2 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 4vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.news-featured__info p {
    max-width: 650px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.news-featured__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 150px;
    height: 50px;
    margin-top: 34px;
    padding: 0 28px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.news-featured__button:hover {
    background: #e7e7e7;
    transform: translateY(-2px);
}

.news-listing {
    width: 100%;
    padding: 90px 70px 110px;
    background: #ffffff;
}

.news-listing__header {
    margin-bottom: 45px;
}

.news-listing__header h2 {
    margin: 0;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(38px, 3.5vw, 60px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -2px;
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 30px;
}

.news-filter {
    position: relative;
    display: inline-block;
    padding: 0 0 8px;
    color: #777777;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.news-filter::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #111111;
}

.news-filter--active {
    color: #111111;
}

.news-filter--active::after {
    width: 100%;
}

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

.news-page-card {
    display: block;
    color: #111111;
    text-decoration: none;
}

.news-page-card__image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #eeeeee;
}

.news-page-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.news-page-card:hover .news-page-card__image img {
    transform: scale(1.035);
    filter: brightness(0.92);
}

.news-page-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    color: #777777;
    font-size: 12px;
    font-weight: 400;
}

.news-page-card h3 {
    margin: 14px 0 0;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.news-page-grid__empty {
    grid-column: 1 / -1;
    padding: 70px 30px;
    background: #f4f4f4;
    color: #666666;
    text-align: center;
}

.news-page-grid__empty p {
    margin: 0;
}

.news-page-card:focus-visible,
.news-featured__button:focus-visible {
    outline: 2px solid #173d2b;
    outline-offset: 5px;
}

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

    .news-featured__media {
        min-height: 65vh;
    }

    .news-featured__info {
        min-height: auto;
        padding: 70px 40px 80px;
    }

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

    .news-page-card__image {
        height: 400px;
    }
}

@media (max-width: 900px) {
    .news-page-hero__content {
        padding: 0 24px 65px;
    }

    .news-page-hero h1 {
        letter-spacing: -3px;
    }

    .news-intro {
        padding: 80px 24px;
    }

    .news-listing {
        padding: 75px 24px 90px;
    }
}

@media (max-width: 650px) {
    .news-page-hero {
        min-height: 650px;
    }

    .news-page-hero__content {
        padding: 0 20px 55px;
    }

    .news-page-hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .news-page-hero p {
        margin-top: 24px;
        font-size: 14px;
    }

    .news-intro {
        padding: 65px 20px;
    }

    .news-intro__content h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .news-intro__content p {
        font-size: 14px;
    }

    .news-featured {
        min-height: auto;
    }

    .news-featured__media {
        min-height: 50vh;
    }

    .news-featured__info {
        min-height: auto;
        padding: 50px 20px 60px;
    }

    .news-featured__info h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .news-featured__info p {
        font-size: 14px;
    }

    .news-listing {
        padding: 65px 20px 75px;
    }

    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-page-card__image {
        height: 380px;
    }
}

@media (max-width: 420px) {
    .news-page-hero h1 {
        font-size: 52px;
    }

    .news-page-card__image {
        height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-featured__media img,
    .news-page-card__image img,
    .news-featured__button {
        transition: none;
    }
}
