/* ============================================================
   NTM Article — Feature image

   Wide landscape photo that overlaps the bottom of the dark
   hero and breaks into the cream below. The hero section
   carries the bottom padding that produces the "dark tail";
   this section is transparent, pulled upward via a negative
   `margin-top`, and stacked above the hero. A thin white
   border isolates the photo against the dark band.
   ============================================================ */

.ntm-article-feature {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 5vw, 64px);
    margin-top: clamp(-215px, -14vw, -50px);
    background: transparent;
}

.ntm-article-feature__figure {
    margin: 0 auto;
    max-width: var(--ntm-container-max, 1392px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ntm-article-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 3px solid #ffffff;
}
