/* ============================================================
   NTM Article — Read Next

   Cream/page-bg coda. Centered editorial header, one wide
   "featured" article tile (photo left, copy right), a 3-up
   grid of small stacked cards below, and a "VIEW ALL
   ARTICLES" outlined link button at the bottom.
   ============================================================ */

.ntm-article-read-next {
    background-color: #ffffff;
    color: var(--ntm-ink, #14323a);
    padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.ntm-article-read-next__inner {
    max-width: var(--ntm-container-max, 1392px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 4vw, 56px);
}

/* ---------- Header ---------- */
.ntm-article-read-next__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(10px, 1.2vw, 16px);
}

.ntm-article-read-next__eyebrow {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ntm-accent-teal);
}

.ntm-article-read-next__title-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.ntm-article-read-next__title-rule {
    flex: 1 1 0;
    height: 1px;
    background-color: rgba(20, 50, 58, 0.22);
    min-width: clamp(40px, 8vw, 160px);
}

.ntm-article-read-next__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1.1;
}

.ntm-article-read-next__title-italic {
    font-style: italic;
    color: var(--ntm-accent-teal);
    margin-left: 0.18em;
}

.ntm-article-read-next__lede {
    margin: 0;
    max-width: 52ch;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
    line-height: 1.55;
    color: rgba(20, 50, 58, 0.7);
}

/* ---------- Featured tile (wide) ---------- */
.ntm-article-read-next__featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 2.4vw, 32px);
    background-color: rgba(20, 50, 58, 0.04);
}

@media (min-width: 900px) {
    .ntm-article-read-next__featured {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.ntm-article-read-next__featured-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: rgba(20, 50, 58, 0.08);
}

.ntm-article-read-next__featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ntm-article-read-next__featured-media:hover .ntm-article-read-next__featured-image,
.ntm-article-read-next__featured-media:focus-visible .ntm-article-read-next__featured-image {
    transform: scale(1.02);
}

.ntm-article-read-next__featured-body {
    padding: clamp(20px, 2.4vw, 36px) clamp(20px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.4vw, 18px);
    justify-content: center;
}

.ntm-article-read-next__featured-title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.18;
}

.ntm-article-read-next__featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.ntm-article-read-next__featured-title a:hover,
.ntm-article-read-next__featured-title a:focus-visible {
    color: var(--ntm-accent-teal);
}

.ntm-article-read-next__featured-dek {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.05vw, 1.0625rem);
    line-height: 1.6;
    color: rgba(20, 50, 58, 0.7);
}

.ntm-article-read-next__featured-footer {
    margin-top: clamp(8px, 1vw, 14px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.4vw, 20px);
}

.ntm-article-read-next__byline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ntm-article-read-next__byline-spacer {
    flex: 1 1 auto;
}

.ntm-article-read-next__byline-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.ntm-article-read-next__byline-name {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.72rem, 0.78vw, 0.8rem);
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ntm-ink, #14323a);
}

.ntm-article-read-next__byline-role {
    margin: 2px 0 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.78rem, 0.85vw, 0.86rem);
    line-height: 1.3;
    color: rgba(20, 50, 58, 0.6);
}

/* ---------- 3-up grid ---------- */
.ntm-article-read-next__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 3vw, 40px);
}

@media (min-width: 720px) {
    .ntm-article-read-next__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ntm-article-read-next__tile {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vw, 14px);
}

.ntm-article-read-next__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: rgba(20, 50, 58, 0.08);
}

.ntm-article-read-next__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ntm-article-read-next__media:hover .ntm-article-read-next__image,
.ntm-article-read-next__media:focus-visible .ntm-article-read-next__image {
    transform: scale(1.025);
}

.ntm-article-read-next__media-chip {
    position: absolute;
    left: clamp(12px, 1.4vw, 18px);
    bottom: clamp(12px, 1.4vw, 18px);
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background-color: rgba(15, 18, 20, 0.78);
    backdrop-filter: blur(2px);
    color: #ffffff;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.78vw, 0.8rem);
    line-height: 1.1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - clamp(24px, 2.8vw, 36px));
}

.ntm-article-read-next__meta {
    margin: 0;
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.9vw, 12px);
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.78vw, 0.8rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ntm-article-read-next__meta-cat {
    color: var(--ntm-accent-teal);
}

.ntm-article-read-next__meta-sep {
    color: rgba(20, 50, 58, 0.32);
}

.ntm-article-read-next__meta-date {
    color: rgba(20, 50, 58, 0.6);
    font-weight: 500;
}

.ntm-article-read-next__tile-title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(1.125rem, 1.4vw, 1.375rem);
    line-height: 1.25;
    color: var(--ntm-ink, #14323a);
}

.ntm-article-read-next__tile-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.ntm-article-read-next__tile-title a:hover,
.ntm-article-read-next__tile-title a:focus-visible {
    color: var(--ntm-accent-teal);
}

.ntm-article-read-next__read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: clamp(4px, 0.6vw, 8px);
    padding-bottom: 3px;
    color: var(--ntm-ink, #14323a);
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.78vw, 0.8rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(20, 50, 58, 0.35);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.ntm-article-read-next__read:hover,
.ntm-article-read-next__read:focus-visible {
    color: var(--ntm-accent-teal);
    border-bottom-color: var(--ntm-accent-teal);
}

.ntm-article-read-next__arrow {
    width: 12px;
    height: 12px;
    display: block;
}

/* ---------- CTA ---------- */
.ntm-article-read-next__cta-row {
    display: flex;
    justify-content: center;
    margin-top: clamp(8px, 1vw, 14px);
}

.ntm-article-read-next__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.2vw, 16px) clamp(28px, 3vw, 40px);
    border: 1px solid rgba(20, 50, 58, 0.35);
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.72rem, 0.8vw, 0.82rem);
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ntm-ink, #14323a);
    background-color: transparent;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.ntm-article-read-next__cta:hover,
.ntm-article-read-next__cta:focus-visible {
    color: #ffffff;
    background-color: var(--ntm-ink, #14323a);
    border-color: var(--ntm-ink, #14323a);
}
