/* ============================================
   SECTION: Parent Coaching — Our Approach (Project ImPACT)
   White band. Heading + intro on the left, a white
   testimonial card on the right. A pink swirl bleeds
   across the top-right corner. Mirrors ndbi/why.
   ============================================ */

.pc-approach {
    position: relative;
    overflow: clip;
    padding: 120px var(--section-side-padding);
    background: var(--color-white);
}

.pc-approach__swirl {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: -90px;
    right: 0;
    width: 340px;
    aspect-ratio: 700 / 630;
    background: url("../../../images/decorative/pink-w-swirl.25caff9dd604.png") no-repeat top right / contain;
}

.pc-approach__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

/* ----- Intro (left) ----- */
.pc-approach__intro {
    flex: 0 1 505px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pc-approach__heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: var(--font-weight-normal);
    line-height: 50px;
    letter-spacing: -1.26px;
    color: var(--color-text-heading);
    margin: 0;
}

.pc-approach__heading .accent-script {
    color: var(--color-primary);   /* pink */
}

.pc-approach__lede {
    max-width: 465px;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-faint);
    margin: 0;
}

/* ----- Testimonial card (right) ----- */
.pc-approach__card {
    flex: 0 1 610px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 40px;
    background: var(--color-white);
    border: 2px solid var(--color-surface-line-soft);   /* #f6f6f6 */
    border-radius: 12px;
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.05);
    transform: rotate(1deg);
}

.pc-approach__quote-mark {
    display: inline-flex;
    width: 32px;
    height: 32px;
}

.pc-approach__quote {
    margin: 0;
    font-size: 21px;
    font-weight: var(--font-weight-medium);
    line-height: 34px;
    color: var(--color-text-heading);
}

.pc-approach__quote-mark + .pc-approach__quote {
    margin-top: -20px;   /* tighten the 40px card gap between mark and text */
}

.pc-approach__person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pc-approach__avatar {
    flex-shrink: 0;
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffa34d;
}

.pc-approach__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-approach__person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pc-approach__person-name {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 20px;
    color: var(--color-text-heading);
}

.pc-approach__person-role {
    font-size: 14px;
    line-height: 20px;
    color: #776d79;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .pc-approach {
        padding: 80px var(--section-side-padding);
    }
    .pc-approach__inner {
        flex-direction: column;
        gap: 40px;
    }
    .pc-approach__intro,
    .pc-approach__card {
        flex: initial;
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pc-approach {
        padding: 56px var(--section-side-padding);
    }
    .pc-approach__heading {
        font-size: 32px;
        line-height: 38px;
    }
    .pc-approach__card {
        padding: 28px;
        gap: 32px;
    }
}
