/* ============================================================
   NTM Blog — Hero

   Compact dark editorial banner. Teal eyebrow, single-word
   serif headline ("Insights"), italic-teal subhead, and a
   short description. Soft teal radial bloom behind the
   headline, contained and edge-smoothed so it doesn't band.
   ============================================================ */

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

.ntm-blog-hero__glow {
    position: absolute;
    top: 52%;
    left: 50%;
    width: clamp(220px, 24vw, 420px);
    height: clamp(220px, 24vw, 420px);
    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-blog-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.8vw, 24px);
}

.ntm-blog-hero__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-hero__headline {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
    color: #ffffff;
}

.ntm-blog-hero__subhead {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    color: var(--ntm-accent-teal);
}

.ntm-blog-hero__description {
    margin: clamp(8px, 1vw, 14px) auto 0;
    max-width: 620px;
    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);
}
