/* ============================================================
   NTM About — Hero

   Dark editorial banner (#161616). Centered eyebrow in teal,
   large serif display headline with italic-teal accent phrase,
   centered supporting paragraph, then a bordered "AS FEATURED
   IN" band with a row of press marks (logo or text).
   ============================================================ */

.ntm-about-hero {
    position: relative;
    background-color: #161616;
    color: #ffffff;
    padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 64px) clamp(40px, 5vw, 72px);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background glow ----------
   Soft teal radial bloom centered behind the display headline.
   Tight, contained, and edge-smoothed with a small blur so the
   gradient stops don't band into a visible ring.  */
.ntm-about-hero__glow {
    position: absolute;
    top: 41%;
    left: 51%;
    width: clamp(240px, 28vw, 480px);
    height: clamp(240px, 28vw, 480px);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(42, 139, 148, 0.42) 0%,
        rgba(42, 139, 148, 0.20) 30%,
        rgba(42, 139, 148, 0.06) 60%,
        rgba(42, 139, 148, 0.015) 80%,
        rgba(42, 139, 148, 0) 100%
    );
    filter: blur(12px);
}

.ntm-about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--ntm-container-max, 1392px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 72px);
}

.ntm-about-hero__container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
}

.ntm-about-hero__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);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.4vw, 20px);
}

.ntm-about-hero__eyebrow-rule {
    display: inline-block;
    width: clamp(28px, 3vw, 44px);
    height: 1px;
    background-color: var(--ntm-accent-teal);
    opacity: 0.85;
}

.ntm-about-hero__eyebrow-text {
    display: inline-block;
}

.ntm-about-hero__headline {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(2.25rem, 5.4vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.005em;
    color: #ffffff;
}

.ntm-about-hero__headline-roman,
.ntm-about-hero__headline-italic {
    display: block;
}

.ntm-about-hero__headline-roman {
    font-style: normal;
}

.ntm-about-hero__headline-italic {
    font-style: italic;
    color: var(--ntm-accent-teal);
}

.ntm-about-hero__description {
    margin: 0 auto;
    max-width: 680px;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.05vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

/* ---------- AS FEATURED IN band ---------- */
.ntm-about-hero__featured {
    margin-top: clamp(16px, 3vw, 36px);
    padding-top: clamp(28px, 3.5vw, 44px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
    align-items: center;
}

.ntm-about-hero__featured-label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntm-about-hero__featured-label {
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.ntm-about-hero__featured-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: clamp(24px, 4vw, 80px);
}

.ntm-about-hero__featured-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.ntm-about-hero__featured-logo {
    display: block;
    max-height: 40px;
    width: auto;
    opacity: 0.9;
}

.ntm-about-hero__featured-text {
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .ntm-about-hero__featured-list {
        gap: 28px 36px;
    }

    .ntm-about-hero__featured-logo {
        max-height: 24px;
    }
}
