/* over-ons.css — Over ons pagina */

/* Compacter spacing als section-header alleen een H2 heeft (geen lead-p) */
.section-header:not(:has(p)) { margin-bottom: 1.5rem; }

/* Body-typografie consistent over alle secties van deze pagina */
.section-header p { font-size: 1rem; line-height: 1.75; }


/* ---- Bredere context (water / stroom / klimaat) ---- */
.context-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.context-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 1.75rem;
}
.context-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.context-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---- Tekstblok onder section-header ---- */
.about-body {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.about-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body--narrow { max-width: 580px; margin-top: 2rem; }

/* ---- Partners-strip ---- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}
.partner-item {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* ---- CTA-rij ---- */
.about-cta-row {
    display: flex;
    justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .context-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .partners-grid { grid-template-columns: 1fr; }
}
