#news-hub-page {
    background: #f3f7fb;
}

#news-hub-page .tb-main-cont {
    overflow: hidden;
}

.news-hub-hero {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(6, 38, 73, .95), rgba(23, 115, 198, .86)),
        url(../client/home-hero-work.png) center 46% / cover no-repeat;
}

.news-hub-hero:after {
    position: absolute;
    content: '';
    width: 180px;
    height: 6px;
    left: max(5vw, calc((100% - 1220px) / 2));
    bottom: 0;
    background: #85c9fb;
}

.news-hub-hero-inner,
.news-hub-content {
    position: relative;
    width: min(90%, 1220px);
    margin: auto;
}

.news-hub-kicker {
    margin: 0 0 12px;
    color: #a9dbff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .22em;
}

.news-hub-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: .05em;
}

.news-hub-hero p:last-child {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    line-height: 1.8;
}

.news-hub-content {
    padding: 72px 0 110px;
}

.press-story + .press-story {
    margin-top: 72px;
    padding-top: 64px;
    border-top: 1px solid #dbe5ee;
}

.press-story-head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.press-story-number {
    flex: 0 0 auto;
    color: #1773c6;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.press-story-head h2 {
    margin: -4px 0 0;
    color: #182a3a;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    line-height: 1.42;
    letter-spacing: .02em;
}

.press-story-head p {
    margin: 8px 0 0;
    color: #667786;
    font-size: .95rem;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.news-card {
    position: relative;
    display: block;
    overflow: hidden;
    color: #182a3a;
    background: #fff;
    border: 1px solid #e0e8ef;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(16, 63, 103, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover,
.news-card:focus-visible {
    color: #182a3a;
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(16, 63, 103, .16);
}

.news-card:focus-visible {
    outline: 3px solid #85c9fb;
    outline-offset: 4px;
}

.news-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dfeaf3;
}

.news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

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

.news-source {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(7, 26, 47, .88);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.news-card-body {
    padding: 24px 24px 26px;
}

.news-card-body h3 {
    min-height: 3em;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.news-card-action {
    display: inline-block;
    margin-top: 22px;
    color: #1773c6;
    font-size: .92rem;
    font-weight: 700;
}

.news-card-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
}

.news-card-featured .news-card-media {
    aspect-ratio: auto;
    min-height: 360px;
}

.news-card-featured .news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 58px);
}

.news-card-featured .news-card-body h3 {
    min-height: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

@media only screen and (max-width: 900px) {
    .news-card-featured {
        grid-template-columns: 1fr;
    }

    .news-card-featured .news-card-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media only screen and (max-width: 767px) {
    .news-hub-hero {
        min-height: 235px;
    }

    .news-hub-hero:after {
        width: 110px;
    }

    .news-hub-hero h1 {
        font-size: 2.25rem;
    }

    .news-hub-hero p:last-child {
        font-size: .95rem;
    }

    .news-hub-content {
        padding: 50px 0 80px;
    }

    .press-story + .press-story {
        margin-top: 54px;
        padding-top: 48px;
    }

    .press-story-head {
        gap: 12px;
    }

    .news-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-body {
        padding: 20px;
    }

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

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