/* =========================================================
   TONTRÄGER – Rubrik-spezifisch
   Scope: body.la.rubrik-tontraeger
   ========================================================= */

body.la.rubrik-tontraeger .breadcrumb{
  display: none;
}

/* =========================================================
   Übersicht – Bildteppich
   ========================================================= */

body.la.rubrik-tontraeger .lp-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

body.la.rubrik-tontraeger .lp-card{
  display: block;
  text-decoration: none;
}

body.la.rubrik-tontraeger .lp-card figure{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  aspect-ratio: 1 / 1;
  transition: box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease;
}

body.la.rubrik-tontraeger .lp-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Lichtreflex-Effekt */

body.la.rubrik-tontraeger .lp-card figure::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
  background: linear-gradient(
    to bottom right,
    rgba(243,243,243,0.00) 0%,
    rgba(243,243,243,0.10) 22%,
    rgba(243,243,243,0.30) 40%,
    rgba(243,243,243,0.55) 58%,
    rgba(243,243,243,0.80) 78%,
    rgba(243,243,243,0.92) 100%
  );
}

body.la.rubrik-tontraeger .lp-card:hover figure::before{
  opacity: 0;
}

/* Jahr-Badge */

body.la.rubrik-tontraeger .year-badge{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 8px 14px;
  border: none;
  border-radius: 0;
  background: linear-gradient(
    to left,
    rgba(120,120,120,0.65) 0%,
    rgba(120,120,120,0.45) 40%,
    rgba(120,120,120,0.00) 100%
  );
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(0,0,0,0.85);
  text-align: right;
  transition: background 180ms ease;
}

body.la.rubrik-tontraeger .lp-card:hover .year-badge{
  background: var(--la-teal);
  background-image: none;
  color: var(--la-kiwi);
}

/* Karten-Hover */

body.la.rubrik-tontraeger .lp-card:hover figure{
  box-shadow: 0 0 0 2px var(--la-teal), 0 4px 10px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* =========================================================
   10''-SCHELLACKPLATTEN – Hover-Lösung A/B
   ========================================================= */

body.la.rubrik-tontraeger .lp-card .shellac-flip{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f7f7f7;
}

body.la.rubrik-tontraeger .lp-card .shellac-flip img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

/* A-Seite sichtbar */

body.la.rubrik-tontraeger .lp-card .shellac-flip img:first-child{
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

/* B-Seite verborgen */

body.la.rubrik-tontraeger .lp-card .shellac-flip img:last-child{
  opacity: 0;
  z-index: 2;
  transform: scale(1.035);
}

/* Beim Hover wechselt die Seite */

body.la.rubrik-tontraeger .lp-card:hover .shellac-flip img:first-child{
  opacity: 0;
  transform: scale(1.035) rotate(-0.4deg);
  filter: saturate(0.96);
}

body.la.rubrik-tontraeger .lp-card:hover .shellac-flip img:last-child{
  opacity: 1;
  transform: scale(1) rotate(0.4deg);
}

/* Zusätzlicher Schellack-Glanz */

body.la.rubrik-tontraeger .lp-card .shellac-flip::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.18), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 72% 76%, rgba(255,255,255,0.08), rgba(255,255,255,0) 28%);
  opacity: 0.45;
  transition: opacity 260ms ease;
}

body.la.rubrik-tontraeger .lp-card:hover .shellac-flip::after{
  opacity: 0.18;
}

/* =========================================================
   LP / EP / SINGLE – Cover-Wechsel bei Hover
   Greift nur bei .cover-flip
   ========================================================= */

body.la.rubrik-tontraeger .lp-card .cover-flip{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f7f7f7;
}

body.la.rubrik-tontraeger .lp-card .cover-flip img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

body.la.rubrik-tontraeger .lp-card .cover-flip img:first-child{
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

body.la.rubrik-tontraeger .lp-card .cover-flip img:last-child{
  opacity: 0;
  z-index: 2;
  transform: scale(1.02);
}

body.la.rubrik-tontraeger .lp-card:hover .cover-flip img:first-child{
  opacity: 0;
  transform: scale(1.03) rotate(-0.25deg);
  filter: saturate(0.97);
}

body.la.rubrik-tontraeger .lp-card:hover .cover-flip img:last-child{
  opacity: 1;
  transform: scale(1) rotate(0.25deg);
}

/* =========================================================
   Alternative Übersicht mit cover-grid / cover-card
   ========================================================= */

body.la.rubrik-tontraeger .cover-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

body.la.rubrik-tontraeger .cover-card{
  display: block;
  text-decoration: none;
}

body.la.rubrik-tontraeger .cover-card figure{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  aspect-ratio: 1 / 1;
  transition: box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease;
}

body.la.rubrik-tontraeger .cover-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

body.la.rubrik-tontraeger .cover-card figure::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
  background: linear-gradient(
    to bottom right,
    rgba(243,243,243,0.00) 0%,
    rgba(243,243,243,0.10) 22%,
    rgba(243,243,243,0.30) 40%,
    rgba(243,243,243,0.55) 58%,
    rgba(243,243,243,0.80) 78%,
    rgba(243,243,243,0.92) 100%
  );
}

body.la.rubrik-tontraeger .cover-card:hover figure::before{
  opacity: 0;
}

body.la.rubrik-tontraeger .cover-card:hover .year-badge{
  background: var(--la-teal);
  background-image: none;
  color: var(--la-kiwi);
}

body.la.rubrik-tontraeger .cover-card:hover figure{
  box-shadow: 0 0 0 2px var(--la-teal), 0 4px 10px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* =========================================================
   Detailseite: Layout
   ========================================================= */

body.la.rubrik-tontraeger .tontraeger-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 22px;
  align-items: start;
  margin-top: 34px;
}

body.la.rubrik-tontraeger .tontraeger-back{
  margin: 0 0 10px;
}

body.la.rubrik-tontraeger .backlink{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  text-decoration: none;
}

body.la.rubrik-tontraeger .backlink:hover{
  background: #f0f0f0;
}

/* Weißer Block: Cover + Text */

body.la.rubrik-tontraeger .tontraeger-white{
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);

  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  column-gap: 44px;
  row-gap: 14px;
}

/* Cover */

body.la.rubrik-tontraeger .tontraeger-cover{
  margin: 0;
  max-width: 320px;
  border-radius: 0;
  overflow: visible;
}

body.la.rubrik-tontraeger .tontraeger-cover > a,
body.la.rubrik-tontraeger .tontraeger-cover > .img-link{
  display: block;
}

body.la.rubrik-tontraeger .tontraeger-cover > a img,
body.la.rubrik-tontraeger .tontraeger-cover > .img-link img{
  display: block;
  width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Link-Optik fürs Bild vermeiden */

body.la.rubrik-tontraeger .img-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

body.la.rubrik-tontraeger .img-link:hover{
  filter: brightness(0.98);
}

/* Zusatzbilder */

body.la.rubrik-tontraeger .tontraeger-thumbs{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 320px;
}

body.la.rubrik-tontraeger .tontraeger-thumbs .thumb{
  display: block;
  text-decoration: none;
}

body.la.rubrik-tontraeger .tontraeger-thumbs img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

body.la.rubrik-tontraeger .tontraeger-thumbs .thumb:hover img{
  filter: brightness(0.98);
}

/* Große Rückseite unterhalb */

body.la.rubrik-tontraeger .tontraeger-backcover{
  margin-top: 12px;
  max-width: 320px;
}

body.la.rubrik-tontraeger .tontraeger-backcover .img-link{
  display: block;
}

body.la.rubrik-tontraeger .tontraeger-backcover img{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Zweite kleine Zweiergruppe unter dem Backcover */

body.la.rubrik-tontraeger .tontraeger-thumbs-bottom{
  margin-top: 12px;
}

/* Textblock */

body.la.rubrik-tontraeger .tontraeger-main{
  margin-top: 6px;
  text-align: left;
}

body.la.rubrik-tontraeger .tontraeger-kopfzeile{
  margin: 0 0 18px;
  line-height: 1.35;
}

body.la.rubrik-tontraeger .tt-voe{
  font-weight: 400;
  color: rgba(0,0,0,0.70);
  margin-right: 6px;
}

body.la.rubrik-tontraeger .tt-year{
  font-weight: 400;
  color: rgba(0,0,0,0.85);
}

body.la.rubrik-tontraeger .tt-label{
  display: inline-block;
  margin-top: 2px;
  color: rgba(0,0,0,0.85);
}

body.la.rubrik-tontraeger .tontraeger-format{
  margin: 0 0 16px;
  color: rgba(0,0,0,0.90);
}

body.la.rubrik-tontraeger .tontraeger-kurztext{
  margin: 0 0 14px;
  padding-left: 4px;
  color: rgba(0,0,0,0.88);
  max-width: 58ch;
  line-height: 1.55;
}

/* Tracklist jetzt in derselben Schriftgröße wie die Anmerkungen */

body.la.rubrik-tontraeger .tontraeger-tracklist{
  margin: 0 0 18px;
  padding-left: 26px;
  font-size: 0.88rem;
  line-height: 1.5;
}

body.la.rubrik-tontraeger .tontraeger-tracklist li{
  margin: 0 0 2px;
}

body.la.rubrik-tontraeger .tontraeger-note{
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 4px solid rgba(0,125,115,0.35);
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.84);
  max-width: 52ch;
}

body.la.rubrik-tontraeger .tontraeger-detailblock{
  margin-top: 12px;
  max-width: 320px;
}

body.la.rubrik-tontraeger .tontraeger-detaillink{
  display: block;
  text-decoration: none;
  color: inherit;
}

body.la.rubrik-tontraeger .tontraeger-detailblock img{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: filter 150ms ease, transform 150ms ease;
}

body.la.rubrik-tontraeger .tontraeger-detaillink:hover img{
  filter: brightness(0.98);
}

body.la.rubrik-tontraeger .tontraeger-detailcaption{
  margin-top: 6px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(0,0,0,0.62);
}

body.la.rubrik-tontraeger .tontraeger-tracklist{
  margin-top: 6px;
}

/* Rechter grauer Bereich */

body.la.rubrik-tontraeger .tontraeger-side{
  background: var(--la-pagebg);
  border-radius: 16px;
  padding: 18px 18px;
}

body.la.rubrik-tontraeger .inv-block{
  border-left: 1px solid rgba(0,0,0,0.10);
  padding-left: 18px;
}

body.la.rubrik-tontraeger .inv-label{
  font-size: 0.95rem;
  color: rgba(0,0,0,0.70);
  margin: 0 0 4px;
}

body.la.rubrik-tontraeger .inv-value{
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 0 0 14px;
}

body.la.rubrik-tontraeger .inv-extra{
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(0,0,0,0.78);
}

body.la.rubrik-tontraeger .inv-extra a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,125,115,0.28);
  transition: color 150ms ease, border-color 150ms ease;
}

body.la.rubrik-tontraeger .inv-extra a:hover{
  color: var(--la-teal);
  border-bottom-color: var(--la-teal);
}

/* =========================================================
   Lightbox-Dialog
   ========================================================= */

body.la.rubrik-tontraeger .tt-lightbox{
  border: 0;
  padding: 0;
  background: transparent;
}

body.la.rubrik-tontraeger .tt-lightbox::backdrop{
  background: rgba(0,0,0,0.55);
}

body.la.rubrik-tontraeger .tt-lightbox .tt-lightbox-img{
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

body.la.rubrik-tontraeger .tt-lightbox .tt-close{
  position: absolute;
  right: -12px;
  top: -12px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

body.la.rubrik-tontraeger .tt-lightbox .tt-close:hover{
  filter: brightness(0.98);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (min-width: 700px){
  body.la.rubrik-tontraeger .lp-grid,
  body.la.rubrik-tontraeger .cover-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px){
  body.la.rubrik-tontraeger .lp-grid,
  body.la.rubrik-tontraeger .cover-grid{
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 980px){
  body.la.rubrik-tontraeger .tontraeger-layout{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  body.la.rubrik-tontraeger .tontraeger-white{
    grid-template-columns: 300px minmax(0, 1fr);
    column-gap: 30px;
  }

  body.la.rubrik-tontraeger .tontraeger-cover{
    max-width: 300px;
  }

  body.la.rubrik-tontraeger .tontraeger-cover > a img,
  body.la.rubrik-tontraeger .tontraeger-cover > .img-link img{
    width: 300px;
  }

  body.la.rubrik-tontraeger .tontraeger-thumbs{
    max-width: 300px;
  }

  body.la.rubrik-tontraeger .tontraeger-backcover{
    max-width: 300px;
  }

  body.la.rubrik-tontraeger .tontraeger-backcover img{
    max-width: 300px;
  }

  body.la.rubrik-tontraeger .tontraeger-side{
    padding: 14px 16px;
  }

  body.la.rubrik-tontraeger .inv-block{
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.10);
    padding-top: 14px;
  }
	
body.la.rubrik-tontraeger .tontraeger-detailblock{
  max-width: 300px;
}

body.la.rubrik-tontraeger .tontraeger-detailblock img{
  max-width: 300px;
}
}

@media (max-width: 700px){
  body.la.rubrik-tontraeger .tontraeger-white{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body.la.rubrik-tontraeger .tontraeger-cover{
    max-width: 420px;
  }

  body.la.rubrik-tontraeger .tontraeger-cover > a img,
  body.la.rubrik-tontraeger .tontraeger-cover > .img-link img{
    width: 100%;
    max-width: 420px;
  }

  body.la.rubrik-tontraeger .tontraeger-thumbs{
    max-width: 420px;
  }

  body.la.rubrik-tontraeger .tontraeger-backcover{
    max-width: 420px;
  }

  body.la.rubrik-tontraeger .tontraeger-backcover img{
    max-width: 420px;
  }

  body.la.rubrik-tontraeger .tontraeger-note{
    max-width: none;
  }
	
body.la.rubrik-tontraeger .tontraeger-detailblock{
  max-width: 420px;
}

body.la.rubrik-tontraeger .tontraeger-detailblock img{
  max-width: 420px;
}
}