/* ==========================================================================
   H2G — Wel/niet-kaarten (wrapper h2g/wel-niet-kaarten + child h2g/wel-niet-kaart)
   Sectie "Voor wie is dit bedoeld?": kop-rij (label links, subtitel rechts) +
   twee outline-kaarten naast elkaar, waarvan de tweede invers (accent-achtergrond).
   1-op-1 nabouw Lijndraad.
   ========================================================================== */

.h2g-wel-niet {
  padding: 0 var(--gutter) 130px;
  color: var(--color-accent);
}

/* --- Kop-rij: label links, subtitel rechts (typografie zoals h2g-sectie-kop) --- */
.h2g-wel-niet__kop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}

.h2g-wel-niet__kop h2 {
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.h2g-wel-niet__kop span {
  color: inherit;
}

/* --- Grid: twee kaarten naast elkaar --- */
.h2g-wel-niet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Outline-kaart (h2g/wel-niet-kaart) --- */
.h2g-wel-niet-kaart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
}

.h2g-wel-niet-kaart--invers {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.h2g-wel-niet-kaart__titel {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: inherit; /* wint van de globale h3-kleur — crème in de inverse kaart */
}

.h2g-wel-niet-kaart__lijst {
  display: flex;
  flex-direction: column;
  border-top: 2px solid currentColor;
}

.h2g-wel-niet-kaart__punt {
  border-bottom: 2px solid currentColor;
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

/* --- Responsive @860px (stapelen) --- */
@media (max-width: 860px) {
  .h2g-wel-niet__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
