/* ============================================
   PAGE: Frequently Asked Questions
   Extends the homepage FAQ section (cream band,
   two-column intro + accordion, swirl). Adds a
   contained dual-CTA row that matches Guidebook
   brand colors without dominating the page.
   ============================================ */

.faqs-page {
    /* home .faq already sets cream bg + side padding;
       extend bottom so CTAs breathe inside the band. */
    padding-bottom: 88px;
}

.faqs-page__heading {
    /* h1 uses same display scale as home FAQ h2 */
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1.26px;
}

/* Same sticky intro as Services Overview (“Specialized care…”):
   heading stays in view while the taller FAQ column scrolls past. */
.faqs-page .faq__intro {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.faqs-page .faq__list {
    max-width: none;
    width: 100%;
}

.faqs-page .faq-item__panel p {
    margin: 0 0 0.85em;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-faint);
}

.faqs-page .faq-item__panel p:last-child {
    margin-bottom: 0;
}

.faqs-page .faq-item__panel a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

/* ----- Dual CTAs ----- */
.faqs-page__ctas-wrap {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 48px auto 0;
    padding-inline: 0;
}

.faqs-page__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faqs-page__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 16px;
    min-height: 0;
}

.faqs-page__cta--navy {
    background: linear-gradient(135deg, #0c2733 0%, #1a3d4d 100%);
}

.faqs-page__cta--pink {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.faqs-page__cta-text {
    margin: 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.35;
    letter-spacing: -0.3px;
    color: #fff;
    max-width: 18ch;
}

.faqs-page__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 11px 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--color-text-heading);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.faqs-page__cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1024px) {
    .faqs-page__ctas-wrap {
        margin-top: 40px;
    }

    .faqs-page .faq__intro {
        position: static;
    }
}

@media (max-width: 768px) {
    .faqs-page {
        padding-bottom: 64px;
    }

    .faqs-page__heading {
        font-size: 32px;
        line-height: 38px;
    }

    .faqs-page__ctas {
        grid-template-columns: 1fr;
    }

    .faqs-page__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 22px 20px;
    }

    .faqs-page__cta-text {
        font-size: 20px;
        max-width: none;
    }
}
