/* =====================================================
   OVER ONS – Specifieke stijlen
   ===================================================== */

/* Gecentreerde intro-tekst */
.overons-intro .tekst-centreer p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Full-width banner (Wix-stijl) */
.overons-banner-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 420px;
}

.overons-banner-full {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Verhaal sectie */
.overons-verhaal-grid {
  max-width: 720px;
}

.overons-verhaal-grid h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Citaat */
.overons-citaat {
  border-left: 3px solid var(--teal-midden);
  margin: 28px 0;
  padding: 16px 24px;
  background: rgba(58, 114, 105, 0.05);
  border-radius: 0 6px 6px 0;
  color: var(--teal-donker);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Helper classes */
.tekst-centreer { text-align: center; }

/* Team grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.teamlid {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  padding: 20px 18px 16px;
  width: 185px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.teamlid:hover {
  box-shadow: 0 6px 24px var(--schaduw);
  transform: translateY(-3px);
}

.teamlid img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 10px;
}

.teamnaam {
  font-weight: 600;
  color: var(--teal-donker);
  font-size: 0.95rem;
  margin-top: 4px;
}

.teamrol {
  font-size: 0.88rem;
  color: var(--teal-midden);
  margin-top: 2px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 700px) {
  .overons-banner-full { height: 240px; }

  .team-grid { gap: 18px; }
  .teamlid   { width: calc(50% - 9px); min-width: 140px; }
}

@media (max-width: 400px) {
  .teamlid { width: 100%; }
}
