/* Datei: making_of.css */
background-size: cover;
padding: 2rem;
border-radius: 12px;
max-width: 800px;
width: 100%;
min-height: 100vh;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
margin: 2rem auto;
}


.buch-titel {
font-family: 'IM Fell English SC', serif;
font-size: 2.8rem;
text-align: center;
margin-top: 0.5rem;
margin-bottom: 1rem;
color: #2d2d2d;
}


.buch-eintrag {
border-top: 1px dashed #bbb;
padding: 0.8rem 0;
margin-bottom: 1rem;
}

.buch-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;

  margin-top: 1rem;
  margin-bottom: 1rem;

  border: 4px double #5c4324;
  border-radius: 6px;
  background-color: #d6c4a0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  display: block;

  object-fit: cover;
}

.meta-zeile {
font-size: 1.2rem;
font-style: italic;
color: #3e2f1c;
margin-bottom: 0.4rem;
}


.eintrag-text {
font-size: 1.05rem;
color: #2a1f14;
line-height: 1.5;
white-space: pre-wrap;
margin-bottom: 0.5rem;
}


.eintrag-bilder {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 0.3rem;
}


.eintrag-bilder img.buch-bild {
height: 200px !important;
width: auto !important;
max-width: 100% !important;
object-fit: contain;
border: 4px double #5c4324;
border-radius: 6px;
padding: 4px;
background-color: #d6c4a0;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
display: block;
transition: transform 0.2s ease;
}


.eintrag-bilder img.buch-bild:hover {
transform: scale(2);
}


@media (max-width: 768px) {
.eintrag-bilder img.buch-bild {
height: 160px !important;
}
}


@media (max-width: 480px) {
.eintrag-bilder img.buch-bild {
height: 140px !important;
}
}