/* =========================
   litter.css – FINAL (Copy/Paste)
   Ziel:
   - Kopf/Infos zentriert
   - Elternbilder: gleiche Fläche, GANZ sichtbar (contain), OHNE graue Box
   - Logos: niemals riesig (global img{max-width:100%} abgesichert)
   - Welpenbilder: 4/3 mit cover
   - Highlights: 16/9 mit cover
   ========================= */

/* ---------- Head / Intro ---------- */
.litterPage .litterHead{
  text-align: center;
  margin-bottom: 26px;
}
.litterPage .litterSub{
  margin: 6px 0 10px;
  opacity: .85;
  font-weight: 600;
}
.litterPage .litterIntro{
  margin: 0 auto 10px;
  max-width: 800px;
  line-height: 1.7;
}
.litterPage .litterStatus{
  margin: 0;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  font-weight: 700;
}

/* Optionaler Info/Update Block oben */
.litterInfoBlock{
  text-align: center;
  max-width: 760px;
  margin: 18px auto 24px;
  line-height: 1.55;
}

/* ---------- Sections ---------- */
.litterSection{ margin-top: 26px; }
.litterSection h2{ text-align: center; }

/* =========================================================
   ELTERN
   Erwartetes HTML (wie in deiner a-wurf.php):
   <div class="mediaBox parentMediaBox"><img ...></div>
   ========================================================= */
.parentsRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 14px;
}
@media (max-width: 820px){
  .parentsRow{ grid-template-columns: 1fr; }
}
.parentBox{ text-align: center; }
g
/* Box = gleiche Render-Fläche für beide */
.litterPage .parentsRow .parentBox .parentMediaBox{
  width: 100%;
  aspect-ratio: 4 / 3;     /* WICHTIG: beide gleich */
  border-radius: 12px;
  overflow: hidden;
  background: transparent; /* <- KEINE graue Box */
  border: 0;               /* optional: kein Rahmen */
  box-shadow: none;        /* optional: kein Schatten */
}

/* Elternbild: komplett sichtbar, kein Zoom/Crop */
.litterPage .parentsRow .parentBox .parentMediaBox img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;      /* <- GANZ sichtbar */
  object-position: center center !important;
  display: block;
}

/* Text unter Eltern */
.parentCaption{ margin-top: 10px; }
.parentCaption .who{ font-style: italic; margin-bottom: 2px; }
.parentCaption .meta{ font-size: 0.95rem; opacity: 0.9; }

/* ---------- LOGOS (Fix gegen "riesig") ---------- */
.parentLogo,
.breederRow{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

/* schützt gegen globale img{max-width:100%;height:auto} */
.parentLogo img,
.breederRow img,
img.breederLogo{
  width: auto !important;
  height: 44px !important;     /* <- fix, damit nie riesig */
  max-width: 220px !important;
  object-fit: contain !important;
  display: inline-block !important;
  opacity: .95;
}

/* ---------- Welpen (Blocks) ---------- */
.puppyBlocks{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.puppyBlock{
  border-radius: 12px;
  overflow: hidden;
}
.puppyInner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
}
@media (max-width: 820px){
  .puppyInner{ grid-template-columns: 1fr; }
}

.puppyMediaBig{ padding: 16px; }

/* Welpenbilder einheitlich & vollflächig */
.puppyMediaBig .mediaBox{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
}
.puppyMediaBig .mediaBox img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* Welpen dürfen gecroppt werden */
  display: block;
}

.puppyTextSide{
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.puppyNo{
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.puppyNameLine{
  font-size: 1.05rem;
  font-weight: 700;
}
.puppyMiniMeta{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  font-size: 0.95rem;
  opacity: 0.95;
}
.puppyDesc{ margin: 6px 0 0; line-height: 1.6; }

/* Alternierendes Layout */
.puppyBlock.alt .puppyMediaBig{ order: 2; }
.puppyBlock.alt .puppyTextSide{ order: 1; }

/* ---------- Recap / Abschluss ---------- */
.litterRecap{ margin-top: 26px; }
.litterRecapInner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}
.recapDate{ font-weight: 800; margin: 0 0 16px; }
.recapList p{ margin: 4px 0; }
.recapParagraph{ margin: 16px 0; }
.recapParagraph.highlight{ font-weight: 700; }
.recapThanks{ margin: 20px 0; font-style: italic; }
.recapOutro{ margin-top: 22px; }

/* ---------- Highlights Slideshow ---------- */
.bigSlideshow{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  aspect-ratio: 16 / 9;
  background: #fff;
  margin-top: 12px;
}
.bigSlideshow img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bigNav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}
.bigNav.prev{ left: 10px; }
.bigNav.next{ right: 10px; }

/* ---------- Fallback ---------- */
.litterTextBlock{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,.65);
  text-align: center;
  line-height: 1.6;
}
