/* ============================================================
   NTM About — Our Mission

   Dark section flowing from hero. Left column has a small teal
   eyebrow with a short hairline rule beneath; right column is a
   large serif editorial statement with a small attribution.
   ============================================================ */

.ntm-about-mission {
    background-color: #161616;
    color: #ffffff;
    padding: clamp(56px, 9vw, 132px) clamp(24px, 5vw, 64px) clamp(72px, 11vw, 160px);
}

.ntm-about-mission__container {
    max-width: var(--ntm-container-max, 1392px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: clamp(40px, 6vw, 120px);
    row-gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

@media (min-width: 992px) {
    .ntm-about-mission__container {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    }
}

.ntm-about-mission__label {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.ntm-about-mission__rule {
    display: block;
    width: 44px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.45);
}

.ntm-about-mission__body {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 40px);
}

.ntm-about-mission__copy {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.6vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: 0.005em;
    color: #ffffff;
    /* Editorial fade: bright white on the left, drifting toward
       muted on the right. background-clip masks the live text so
       the gradient flows across whatever wrap the copy lands on. */
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 28%,
        rgba(255, 255, 255, 0.62) 72%,
        rgba(255, 255, 255, 0.38) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ntm-about-mission__attribution {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}
