/* ============================================================
   NTM Blog — Related dispatches (Explore Notable Men)

   Cream-background section. Editorial header: eyebrow + serif
   headline ("Explore Notable Men") on the left with a small
   supporting sentence pinned to the right. Hairline rule, then
   a 3-up grid of small stacked cards: photo on top with an
   author chip overlay, CATEGORY | DATE meta, title, and a
   "READ THE ARTICLE" link.
   ============================================================ */

.ntm-blog-related {
    background-color: var(--ntm-bg-cream, #efe6d6);
    color: var(--ntm-ink, #14323a);
    padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

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

.ntm-blog-related__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2vw, 28px);
    align-items: end;
}

@media (min-width: 900px) {
    .ntm-blog-related__header {
        grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    }
}

.ntm-blog-related__header-text {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vw, 16px);
}

.ntm-blog-related__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-blog-related__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.15;
    color: var(--ntm-ink, #14323a);
}

.ntm-blog-related__title-roman {
    font-style: normal;
}

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

.ntm-blog-related__lede {
    margin: 0;
    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);
}

@media (min-width: 900px) {
    .ntm-blog-related__lede {
        text-align: right;
    }
}

.ntm-blog-related__rule {
    height: 1px;
    background-color: rgba(20, 50, 58, 0.18);
    width: 100%;
}

.ntm-blog-related__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 3vw, 40px);
}

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

.ntm-blog-related__tile {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.4vw, 18px);
}

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

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

.ntm-blog-related__media:hover .ntm-blog-related__image,
.ntm-blog-related__media:focus-visible .ntm-blog-related__image {
    transform: scale(1.025);
}

.ntm-blog-related__author-chip {
    position: absolute;
    left: clamp(12px, 1.4vw, 18px);
    bottom: clamp(12px, 1.4vw, 18px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 6px;
    background-color: rgba(15, 18, 20, 0.78);
    backdrop-filter: blur(2px);
    color: #ffffff;
    max-width: calc(100% - clamp(24px, 2.8vw, 36px));
}

.ntm-blog-related__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ntm-blog-related__author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ntm-blog-related__author-name {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    line-height: 1.1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ntm-blog-related__author-role {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: 0.72rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ntm-blog-related__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-blog-related__meta-cat {
    color: var(--ntm-accent-teal);
}

.ntm-blog-related__meta-sep {
    color: rgba(20, 50, 58, 0.32);
}

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

.ntm-blog-related__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-blog-related__tile-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.ntm-blog-related__tile-title a:hover,
.ntm-blog-related__tile-title a:focus-visible {
    color: var(--ntm-accent-teal);
}

.ntm-blog-related__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-blog-related__read:hover,
.ntm-blog-related__read:focus-visible {
    color: var(--ntm-accent-teal);
    border-bottom-color: var(--ntm-accent-teal);
}

.ntm-blog-related__read-arrow {
    width: 12px;
    height: 12px;
    display: block;
}
