/* ============================================================
   NTM About — Apply / Get Featured CTA

   Cream-colored band. Centered eyebrow, serif headline with
   italic-teal accent phrase, short paragraph, primary teal CTA
   button, and small secondary "GET IN TOUCH" link below.
   ============================================================ */

.ntm-about-cta {
    position: relative;
    background-color: var(--ntm-bg-cream, #efe6d6);
    color: var(--ntm-ink, #14323a);
    padding: clamp(72px, 10vw, 132px) clamp(24px, 5vw, 64px);
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background glow ----------
   Soft warm-white bloom centered behind the headline. Mirrors
   the hero treatment but inverted for the cream surface. */
.ntm-about-cta::before {
    content: '';
    position: absolute;
    top: 42%;
    left: 50%;
    width: clamp(360px, 42vw, 760px);
    height: clamp(360px, 42vw, 760px);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.45) 28%,
        rgba(255, 255, 255, 0.15) 55%,
        rgba(255, 255, 255, 0.04) 78%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(14px);
}

.ntm-about-cta__container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 1.8vw, 24px);
}

.ntm-about-cta__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-cta__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--ntm-ink, #14323a);
}

.ntm-about-cta__title-roman,
.ntm-about-cta__title-tail {
    font-style: normal;
}

.ntm-about-cta__title-italic {
    font-style: italic;
    color: var(--ntm-accent-teal);
    margin: 0 0.12em;
}

.ntm-about-cta__title-tail {
    display: block;
}

.ntm-about-cta__description {
    margin: 0;
    max-width: 540px;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(20, 50, 58, 0.78);
}

.ntm-about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(8px, 1vw, 16px);
    padding: clamp(12px, 1vw, 14px) clamp(28px, 2.4vw, 36px);
    background-color: var(--ntm-accent-teal);
    color: #ffffff;
    font-family: var(--ntm-font-sans);
    font-weight: 600;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--ntm-accent-teal);
    transition: background-color 0.18s ease, color 0.18s ease;
}

.ntm-about-cta__btn:hover,
.ntm-about-cta__btn:focus-visible {
    background-color: transparent;
    color: var(--ntm-accent-teal);
}

.ntm-about-cta__secondary {
    margin: clamp(8px, 1vw, 16px) 0 0;
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20, 50, 58, 0.55);
}

.ntm-about-cta__secondary-text {
    margin-right: 6px;
}

.ntm-about-cta__secondary-link {
    color: var(--ntm-accent-teal);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.18s ease;
}

.ntm-about-cta__secondary-link:hover,
.ntm-about-cta__secondary-link:focus-visible {
    opacity: 0.7;
}
