/* Gedenkblüte — Übersicht offener Erinnerungsorte.
   Kleine Buchcover in Reihen, die nach unten weiterwachsen — keine Liste. */

.blueten-seite {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(5.5rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
}

.blueten-seite__grund {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--tinte-tief);
}
.blueten-seite__grund > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.blueten-seite__schleier {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 80% at 50% 35%, transparent 28%, rgba(12, 22, 17, 0.72) 100%),
    linear-gradient(to bottom, rgba(12, 22, 17, 0.55) 0%, transparent 30%, rgba(12, 22, 17, 0.88) 100%);
}

.blueten-seite__mitte {
  position: relative;
  z-index: 1;
  width: min(58rem, 100% - 2 * var(--rand));
}

.blueten-glas {
  text-align: center;
}
.blueten-glas h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}

.blueten-leer {
  margin-top: clamp(2rem, 5vw, 2.8rem);
  padding-top: clamp(1.6rem, 3vw, 2rem);
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--creme);
}

/* Raster: nebeneinander, dann neue Reihe nach unten. */
.blueten-raster {
  list-style: none;
  margin: clamp(2rem, 5vw, 2.8rem) 0 0;
  padding: clamp(1.4rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.7rem) clamp(0.9rem, 2vw, 1.4rem);
  justify-items: center;
}

.blueten-buch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 11rem;
  text-decoration: none;
  color: inherit;
  transition: color 280ms ease, transform 320ms ease;
}
.blueten-buch:hover,
.blueten-buch:focus-visible {
  color: var(--gold);
  transform: translateY(-3px);
}

.blueten-buch__deckel {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0.35rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, transparent 7%),
    linear-gradient(145deg, #3a3224 0%, #241e16 45%, #14110c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(200, 169, 126, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.4);
}
.blueten-buch__deckel::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(200, 169, 126, 0.38);
  border-radius: 0.2rem;
  pointer-events: none;
  z-index: 2;
}
.blueten-buch__gold {
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 0.15rem;
  pointer-events: none;
  z-index: 2;
}

.blueten-buch__bildnis {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.72;
  filter: grayscale(0.15) contrast(0.95) brightness(0.92);
}
.blueten-buch__bildnis--platz {
  color: rgba(200, 169, 126, 0.28);
  padding: 18% 22% 8%;
  opacity: 1;
  filter: none;
}

.blueten-buch__name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.2;
  color: var(--creme);
  text-align: center;
}
.blueten-buch:hover .blueten-buch__name,
.blueten-buch:focus-visible .blueten-buch__name {
  color: var(--gold);
}
.blueten-buch__zeit {
  font-size: 0.82rem;
  color: var(--creme-still);
  text-align: center;
  margin-top: -0.2rem;
}

@media (max-width: 28rem) {
  .blueten-raster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }
}
