/* Algemene sfeer */
.recept-header {
  text-align: center;
  margin-bottom: 2rem;
}

.recept-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #7a3e2f; /* terracotta */
}

.recept-subtitel {
  font-style: italic;
  color: #555;
}

/* Drieluik */
.recept-illustratie img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto 2rem auto;
}

/* Twee kolommen */
.recept-container {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.recept-links, .recept-rechts {
  flex: 1;
  background: rgba(255, 248, 235, 0.7); /* warm parchment */
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0d2b8;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.recept-links h2, .recept-rechts h2 {
  font-family: "Playfair Display", serif;
  color: #7a3e2f;
  margin-bottom: 1rem;
}

/* Voetnoot */
.recept-voetnoot {
  margin-top: 3rem;
  text-align: center;
  font-style: italic;
  color: #6a5a4a;
}