/* ============================================================
   NTM Profile — Learn More CTA
   Centered cream section: eyebrow, serif title with one italic
   teal word, description, teal pill button.
   ============================================================ */

.ntm-profile-learn-more {
    --ntm-font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
    background-color: #f5efe0;
    color: #121212;
    padding: clamp(56px, 8vw, 96px) 0;
    font-family: var(--ntm-font-sans);
    text-align: center;
}

.ntm-profile-learn-more__container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1.5vw, 20px);
}

.ntm-profile-learn-more__eyebrow {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: clamp(0.875rem, 1.05vw, 1rem);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ntm-accent-teal);
}

.ntm-profile-learn-more__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.2vw, 2.625rem);
    line-height: 1.15;
    color: #121212;
}

.ntm-profile-learn-more__title-roman {
    font-style: normal;
}

.ntm-profile-learn-more__title-italic {
    font-style: italic;
    color: var(--ntm-accent-teal);
    margin: 0 0.18em;
}

.ntm-profile-learn-more__description {
    margin: 0;
    max-width: 480px;
    font-family: var(--ntm-font-sans);
    font-size: clamp(0.9375rem, 1.05vw, 1rem);
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
}

.ntm-profile-learn-more__cta {
    margin-top: clamp(8px, 1vw, 12px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--ntm-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--ntm-accent-teal);
    border: 0;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.ntm-profile-learn-more__cta:hover,
.ntm-profile-learn-more__cta:focus {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.1);
    transform: translateY(-1px);
}
