/* ============================================================
   NTM Profile — Q & A
   Dark numbered Q&A list with serif title at the top and outlined
   "Read the full Q&A" CTA at the bottom.
   ============================================================ */

.ntm-profile-qa {
    --ntm-font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
    position: relative;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: clamp(64px, 9vw, 128px) 0;
    font-family: var(--ntm-font-sans);
}

.ntm-profile-qa__container {
    max-width: var(--ntm-container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Header ---------- */
.ntm-profile-qa__header {
    text-align: center;
    margin-bottom: clamp(56px, 7vw, 96px);
}

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

.ntm-profile-qa__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: #ffffff;
}

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

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

/* ---------- List ---------- */
.ntm-profile-qa__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}

.ntm-profile-qa__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: clamp(24px, 3vw, 40px);
    padding: clamp(32px, 4vw, 56px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ntm-profile-qa__item:last-child {
    border-bottom: 0;
}

/* Collapsed-by-default items; revealed when the section is expanded */
.ntm-profile-qa__item--hidden {
    display: none;
}

.ntm-profile-qa--expanded .ntm-profile-qa__item--hidden {
    display: grid;
}

.ntm-profile-qa__num {
    font-family: var(--ntm-font-serif);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
    color: var(--ntm-accent-teal);
}

.ntm-profile-qa__body {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.8vw, 22px);
}

.ntm-profile-qa__question {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    line-height: 1.3;
    color: #ffffff;
}

.ntm-profile-qa__answer {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

/* ---------- CTA ---------- */
.ntm-profile-qa__cta-wrap {
    margin-top: clamp(32px, 4vw, 48px);
    text-align: center;
}

.ntm-profile-qa__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--ntm-font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: transparent;
    border: 0.5px solid #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ntm-profile-qa__cta:hover,
.ntm-profile-qa__cta:focus {
    background-color: #ffffff;
    color: #0e0e0e;
}
