/* =============================================================================
   weer-thuis.php — verhalen van dieren die weer thuis zijn
   -----------------------------------------------------------------------------
   Voorvoegsel: .wt-
   Stond vol inline stijlen, een emoji in het label en een losse kaart onderaan.
   ============================================================================= */

.wt-body { padding: clamp(2rem, 4.5vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem); }

.wt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
}
.wt-verhaal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
}
/* De foto ligt absoluut in een vaste 4:3-doos. Zonder dat dwong een staande foto
   zijn eigen hoogte af en rekte de hele rij kaarten mee. */
.wt-foto {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--band-blauw);
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.wt-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.wt-tekst { padding: 1rem 1.15rem 1.25rem; }
.wt-tekst h2 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; margin: 0 0 .15rem; }
.wt-meta { font-size: .85rem; font-weight: 600; color: var(--primary-dark); margin: 0 0 .6rem; }
.wt-verhaal-tekst { font-size: .93rem; line-height: 1.6; color: var(--text); margin: 0; white-space: pre-line; }

.wt-leeg {
  max-width: 32rem; margin: 0 auto;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
}
.wt-leeg-icoon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--band-blauw); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.wt-leeg p { color: var(--text-muted); font-size: 1rem; margin: 0; }

.wt-acties {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.wt-actie { border-radius: var(--radius); padding: 1.35rem 1.5rem 1.5rem; border: 1px solid; }
.wt-actie h2 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin: 0 0 .35rem; }
.wt-actie p { color: var(--text-muted); font-size: .93rem; margin: 0 0 1rem; max-width: 46ch; }
.wt-actie .btn { border-radius: var(--radius-sm); font-weight: 600; }
.wt-actie-thuis { background: var(--band-groen); border-color: var(--band-groen-rand); }
.wt-actie-kwijt { background: var(--band-paars); border-color: var(--band-paars-rand); }

@media (max-width: 767px) {
  .wt-acties { grid-template-columns: 1fr; }
}
