/* HERO */

.news-hero {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        url("/images/news-1.jpg")
        center / cover no-repeat;

    color: #fff;
    overflow: hidden;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(6,20,38,.96) 0%,
        rgba(6,20,38,.82) 52%,
        rgba(6,20,38,.42) 100%
    );
}

.news-hero-inner {
    position: relative;
    z-index: 2;

    padding: 30px 0;
    transform: translateY(-10px);
}

.news-hero-copy {
    max-width: 850px;
}

.eyebrow {
     color: #72c1ea;
}

.news-hero h1 {
    margin: 10px 0 18px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 400;

    line-height: .92;
    letter-spacing: -.025em;
}

.news-hero h1 em {
    color: #62b6df;
    font-weight: 400;
}

.news-hero p {
    max-width: 720px;
    margin: 0;

    font-size: 18px;
    line-height: 1.5;

    color: rgba(255,255,255,.80);
}


/* SECTION HEAD */

/* ==========================================================
   NEWS SECTION
========================================================== */

.news-section {
    padding: 75px 0 100px;
}


/* ==========================================================
   ARTICLE ROW
========================================================== */

.news-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);

    gap: 35px;

    margin-bottom: 35px;
}


/* ==========================================================
   DATE / CATEGORY
========================================================== */

.news-meta-column {
    padding-top: 25px;
}

.news-date {
    display: block;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    color: #14233a;
}

.news-category {
    display: block;

    margin-top: 9px;

    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: #0073ae;
}


/* ==========================================================
   ARTICLE CARD
========================================================== */

.news-article-card {
    padding: 38px 42px;

    background: #f8f5ee;

    border: 1px solid rgba(20,35,58,.14);
    border-left: 4px solid #0073ae;
}

.news-article-card h2 {
    max-width: 1000px;

    margin: 0 0 22px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;

    line-height: 1.08;
    letter-spacing: -.01em;

    color: #14233a;
}

.news-article-card p {
    max-width: 980px;

    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.75;

    color: #5c6674;
}


/* ==========================================================
   SOURCE / READ MORE
========================================================== */

.news-source {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid rgba(20,35,58,.12);
}

.news-source img {
    display: block;

    width: auto;
    max-width: 130px;
    max-height: 45px;

    object-fit: contain;
}

.news-source a,
.news-link {
    display: inline-block;

    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #0073ae;

    text-decoration: none;
}

.news-source a:hover,
.news-link:hover {
    text-decoration: underline;
}


/* ==========================================================
   ARTICLE IMAGES
========================================================== */

.news-main-image {
    display: block;

    width: 100%;
    max-width: 850px;
    height: auto;

    margin-top: 30px;

    border: 1px solid rgba(20,35,58,.12);
}


/* ==========================================================
   MULTIPLE IMAGES
========================================================== */

.news-image-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 25px;

    margin: 5px 0 28px;
}

.news-image-row img {
    width: auto;
    max-width: 280px;
    max-height: 110px;

    object-fit: contain;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 800px) {

    .news-section {
        padding: 55px 0 75px;
    }

    .news-item {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 30px;
    }

    .news-meta-column {
        padding-top: 0;
    }

    .news-article-card {
        padding: 28px;
    }

}


@media (max-width: 620px) {

    .news-hero {
        min-height: 430px;
    }

    .news-hero h1 {
        font-size: 54px;
    }

    .news-hero p {
        font-size: 17px;
    }

    .news-article-card {
        padding: 24px 20px;
    }

    .news-article-card h2 {
        font-size: 32px;
    }

    .news-article-card p {
        font-size: 16px;
    }

}

.news-hero {
    height: 360px !important;
    min-height: 360px !important;
}

.news-hero .eyebrow {
    position: relative;
    top: -70px;
    margin-bottom: 5px;
}

/* Tablet/mobile refinements; desktop remains unchanged. */
@media (max-width: 980px) {
    .news-hero {
        height: auto !important;
        min-height: 400px !important;
    }

    .news-hero-inner {
        padding: 64px 0;
        transform: none;
    }

    .news-hero .eyebrow {
        top: 0;
    }

    .news-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

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

@media (max-width: 620px) {
    .news-hero {
        min-height: 390px !important;
    }

    .news-hero-inner {
        padding: 54px 0;
    }

    .news-hero h1 {
        font-size: clamp(42px, 13vw, 54px);
    }

    .news-hero p {
        font-size: 17px;
        line-height: 1.55;
    }

    .news-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .news-article-card {
        padding: 24px 20px;
    }

    .news-article-card h2 {
        font-size: 32px;
    }

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

    .news-image-row img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
