.beleving {
  background: var(--color-beige);
}

.beleving-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}

.beleving-scene:last-of-type {
  margin-bottom: 0;
}

.beleving-scene.reverse {
  direction: rtl;
}

.beleving-scene.reverse > * {
  direction: ltr;
}

.beleving-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-beige-dark);
}

.beleving-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beleving-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.beleving-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: var(--space-6);
}

.beleving-text p {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.beleving-quote {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-left: 3px solid var(--color-olive);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.beleving-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.beleving-quote cite {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: normal;
}

@media (max-width: 900px) {
  .beleving-scene,
  .beleving-scene.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
  }
  .beleving-text h3 { font-size: var(--text-2xl); }
}
