/* ==========================================================
   ASPIRE TO CHANGE THERAPY, LLC
   FAQ-SPECIFIC STYLES

   Load order:
   1. /newsite/assets/css/style.css
      - shared site styles
      - homepage Services accordion styles
      - .service-item
      - .service-toggle
      - .service-plus
      - .service-title
      - .service-content

   2. /newsite/assets/css/blog.css
      - shared page-title hero

   3. /newsite/assets/css/faq.css
      - FAQ page layout only

   IMPORTANT:
   The FAQ intentionally uses the exact same accordion styling
   already used by the homepage Services section.
   ========================================================== */


/* ==========================================================
   FAQ MAIN SECTION
   ========================================================== */

.faq-section {
    padding: 100px 0 115px;
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: start;
}


/* ==========================================================
   FAQ INTRO
   ========================================================== */

.faq-intro .section-kicker {
    margin: 0 0 12px;
}

.faq-intro h2 {
    margin: 0 0 25px;
    color: var(--dark-navy, #10192c);
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
}

.faq-intro-copy {
    margin: 0 0 34px;
    color: #646872;
    font-size: 17px;
    line-height: 1.85;
}

.faq-image-wrap {
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
}

.faq-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
}


/* ==========================================================
   FAQ ACCORDION PLACEMENT

   The accordion appearance itself comes from style.css.
   ========================================================== */

.faq-list {
    padding-top: 8px;
}


/* ==========================================================
   FAQ ANSWER CONTENT
   ========================================================== */

.faq-list .service-content ul {
    margin: 10px 0 18px 20px;
    padding: 0;
}

.faq-list .service-content li {
    margin-bottom: 7px;
    color: #646872;
    font-size: 18px;
    line-height: 1.68;
}

.faq-list .service-content a {
    color: var(--peach, #efa286);
    font-weight: 700;
    text-decoration: none;
}

.faq-list .service-content a:hover,
.faq-list .service-content a:focus-visible {
    text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0 95px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .faq-list {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 65px 0 80px;
    }

    .faq-intro h2 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .faq-intro-copy {
        font-size: 16px;
        line-height: 1.75;
    }

    .faq-list .service-content li {
        font-size: 17px;
    }
}
