/* ============================================
   SECTION: Parent Coaching — Background in therapy
   Heading + intro on the left, a cream card on the right.
   The card itself reuses the ndbi/definition cream-card
   styles (.ndbi-def-card--cream + swirl); this file adds
   the two-column layout and the three skill outcome rows.
   ============================================ */

.pc-background {
    padding: 100px var(--section-side-padding);
    background: var(--color-white);
}

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

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

.pc-background__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-background__heading .accent-script {
    color: var(--color-primary);   /* pink */
}

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

/* ----- Cream card (right) ----- */
.pc-background__card {
    flex: 0 1 610px;
}

/* Three skill-outcome rows inside the cream card */
.pc-background__list {
    position: relative;
    z-index: 1;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pc-background__item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--color-white);
    border: 2px solid var(--color-primary-light);   /* #ffebf0 */
    border-radius: 12px;
}

.pc-background__item-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.pc-background__item-text {
    flex: 1 1 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    line-height: 28px;
    color: #2c2626;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .pc-background__inner {
        flex-direction: column;
        gap: 40px;
    }
    .pc-background__intro,
    .pc-background__card {
        flex: initial;
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pc-background {
        padding: 60px var(--section-side-padding);
    }
    .pc-background__heading {
        font-size: 32px;
        line-height: 38px;
    }
}
