/* What to Wear - playful kit list, built on pudding-club.css (.pc).
   Page-scoped via .pc.wtw so the rest of the Pudding Club pages are
   unaffected. Typography unified to a single sans-serif family across
   the headings, with size used to establish hierarchy. */

.pc.wtw .pc-intro h1.pc-display,
.pc.wtw .pc-why h2.pc-display,
.pc.wtw .pc-panel h2.pc-display {
    font-family: var(--pc-body);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.pc.wtw .pc-intro h1.pc-display {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
}

.pc.wtw .pc-why h2.pc-display,
.pc.wtw .pc-panel h2.pc-display {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.pc.wtw .pc-intro .pc-lead {
    font-family: var(--pc-body);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--pc-green-dark);
}

/* Any pc-hand text on this page should match body font too */
.pc.wtw .pc-hand,
.pc.wtw figcaption.pc-hand {
    font-family: var(--pc-body);
    font-weight: 500;
    font-style: normal;
}


.wtw-kit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

@media (min-width: 600px) {
    .wtw-kit {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .wtw-kit {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.wtw-card {
    background: #fff;
    border: 1px solid rgba(95, 112, 82, 0.18);
    border-radius: 16px;
    padding: 1.2rem 1.4rem 1.3rem;
    box-shadow: 0 6px 16px rgba(20, 28, 16, 0.09);
}

.wtw-card h3 {
    font-family: var(--pc-body);
    font-weight: 700;
    color: var(--pc-green-dark);
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin: 0 0 0.7rem;
}

.wtw-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wtw-card li {
    position: relative;
    padding: 0.28rem 0 0.28rem 1.5rem;
    font-size: 0.98rem;
    line-height: 1.45;
}

.wtw-card li::before {
    content: "\2713"; /* check mark */
    position: absolute;
    left: 0;
    top: 0.28rem;
    color: var(--pc-green);
    font-weight: 700;
}

.wtw-note {
    margin: 0.6rem 0 0;
    color: var(--pc-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    font-style: italic;
}
