 /* Reset & Grundlayout */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ededed;
      color: #222;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header, main, footer {
      width: 100%;
    }
	
	/* ==== DEVICE SECTION ==== */
	.devices {
	  /* sanfter Pink-Rot-Verlauf */
	  background: linear-gradient(135deg, #e71f85 0%, #e31834 100%);
	  text-align: center;
	  padding: 2.5rem 1rem;   /* vorher 4rem – kompakter */
	  color: white;
	}

	.devices h2 {
	  font-size: 1.6rem;
	  font-weight: 800;
	  color: #fff;
	  letter-spacing: 0.5px;
	  margin-bottom: 0.5rem;
	}

	.devices .underline {
	  width: 50px;
	  height: 3px;
	  background-color: rgba(255,255,255,0.8);
	  margin: 0 auto 1.8rem auto;
	  border-radius: 2px;
	}

	/* Symbol-Grid */
	.device-grid {
	  display: flex;
	  justify-content: center;
	  align-items: flex-start;
	  flex-wrap: wrap;
	  gap: 2rem;
	  max-width: 900px;
	  margin: 0 auto;
	}

	.device {
	  flex: 1 1 120px;
	  min-width: 110px;
	  text-align: center;
	}

	.device i {
	  font-size: 2.2rem;
	  color: #fff;
	  margin-bottom: 0.6rem;
	  transition: transform 0.3s ease, color 0.3s ease;
	  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
	}

	.device p {
	  color: #fff;
	  font-weight: 600;
	  margin-top: 0.2rem;
	  font-size: 1rem;
	  letter-spacing: 0.3px;
	}

	/* dezenter Hover-Effekt */
	.device:hover i {
	  transform: scale(1.12);
	  color: #ffe9c9;  /* zarter Goldton */
	}
	
	/* ==== ABOUT SECTION ==== */
	.about {
	  background-color: #ededed;
	  padding: 4rem 1.5rem;
	}

	.about-container {
	  max-width: 1200px;
	  margin: 0 auto;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 3rem;
	  flex-wrap: wrap; /* Fallback für ältere Browser */
	}

	/* Bild */
	.about-image {
	  flex: 1 1 45%;
	}
	.about-image img {
	  width: 100%;
	  border-radius: 15px;
	  object-fit: cover;
	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	}

	/* Text */
	.about-text {
	  flex: 1 1 50%;
	  color: #222;
	  text-align: left;
	}

	.about-text h2 {
	  font-size: 2rem;
	  color: #FF017F;
	  margin-bottom: 1rem;
	}

	.about-text p {
	  font-size: 1.15rem;
	  line-height: 1.6;
	  color: #444;
	  margin-bottom: 1.5rem;
	}

	.about-text .highlight {
	  color: #FF017F;
	  font-weight: 600;
	}
	
/* Responsive Anpassungen */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column; /* Bild über Text */
    text-align: center;
    gap: 2rem;
  }
  .about-text {
    text-align: center;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1.05rem;
  }
}


/* ==== HIGHLIGHTS (3 Bild-Boxen) ==== */
.highlights{
  background: linear-gradient(180deg, #f7f5f8 0%, #f1eef3 100%); /* dezent, nicht knallig */
  padding: 3.5rem 1.25rem;
  margin: 0; /* kein zusätzlicher Spalt nach oben/unten */
}

.highlights-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.highlight-card{
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

/* Bildbereich */
.h-image{
  position: relative;
  aspect-ratio: 16 / 9;             /* einheitliche Höhe, passt sich an */
  overflow: hidden;
}
.h-image img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
  filter: saturate(1.02) contrast(1.03);
}
/* zarter Retro-Glow beim Hover */
.highlight-card:hover .h-image img{ transform: scale(1.06); }
.h-image::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120% 80% at 70% 20%, rgba(255,1,127,0.18), rgba(255,126,13,0.12) 40%, transparent 70%);
  pointer-events:none;
}

/* Text */
.highlight-card h3{
  font-size: 1.25rem;
  font-weight: 800;
  color: #FF017F;
  margin: 1rem 1rem 0.25rem;
}
.highlight-card p{
  color: #444;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 1rem 1.25rem;
}

/* Responsiv */
@media (max-width: 980px){
  .highlights-wrap{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .highlights-wrap{ grid-template-columns: 1fr; gap: 1.2rem; }
  .highlights{ padding: 2.5rem 1rem; }
  .highlight-card h3{ text-align: center; }
  .highlight-card p{ text-align: center; }
}



/* ==== FEATURE SECTION ==== */
.features {
  background: #794988;
  color: #fff;
  padding: 4rem 1.5rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

/* Einzelnes Feature */
.feature-item {
  flex: 1 1 300px;
  max-width: 340px;
  margin: 0 auto;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icons */
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FF7E0D; /* Standardfarbe */
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  color: #FF017F; /* Hoverfarbe (RetroMix Pink) */
  transform: scale(1.1);
}

/* Titel */
.feature-item h3 {
  color: #FF7E0D;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: #FF017F;
}

/* Text */
.feature-item p {
  color: #F0F0F0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Mobile Ansicht */
@media (max-width: 900px) {
  .features-container {
    gap: 1.1rem; /* war z. B. 2rem → kompakter */
  }

  .feature-item {
    margin-bottom: 1.2rem; /* zusätzlicher Abstand nach unten verringert */
  }

  .feature-item:last-child {
    margin-bottom: 0; /* letzter Block kein extra Abstand */
  }
}

/* ==== ZULETZT GESPIELT ==== */
.last-tracks {
  background: #ededed;
  color: #000;
  padding: 4rem 1.5rem;
}

.last-tracks-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.last-tracks h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #000;
}

/* ==== TRACK GRID ==== */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: stretch;
}

/* ==== TRACK CARD ==== */
.track-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.track-card img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* Desktop: quadratisches Cover */
  height: auto;
  object-fit: cover;
  display: block;
}

/* ==== INFO ==== */
.track-info { padding: 1.2rem; }

.track-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #000;
  word-break: break-word;
  text-align: center;
}

.track-info p {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  opacity: 0.95;
  margin-bottom: 0.6rem;
  word-break: break-word;
  text-align: center;
}

.track-time {
  font-size: 0.9rem;
  color: #FF017F;
  font-weight: 500;
}

/* ==== MOBILE: Zuletzt gespielt als kompakte Liste ==== */
@media (max-width: 768px) {
  .last-tracks {
    padding: 1rem 1rem calc(0.2rem + var(--player-safe, 0px));
  }

  .last-tracks h2 {
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    margin-bottom: 1rem;
  }

  /* 1 Spalte, kleine Abstände */
  .track-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    justify-items: stretch;
  }

  /* Karte wird zur List-Zeile: Cover links, Text rechts */
  .track-card {
    display: grid !important;
    grid-template-columns: 84px 1fr !important; /* Cover | Textblock */
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    border-radius: 12px !important;
    background: #FFF !important;      
    border: 1px solid #dbeafe !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.1) !important;
    transform: none !important;
  }
  .track-card:hover { transform: none !important; box-shadow: 0 2px 6px rgba(0,0,0,.1) !important; }

  /* Cover klein, quadratisch */
  .track-card img {
    width: 84px !important;
    height: 84px !important;
    aspect-ratio: auto !important;       /* überschreibt das 1/1 aus Desktop */
    object-fit: cover !important;
    border-radius: 8px !important;
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
  }

  /* Textblock rechts */
  .track-info {
    padding: 0 !important;
    text-align: left !important;
    display: grid !important;
    grid-template-areas:
      "time"
      "title"
      "artist";
    row-gap: .25rem;
  }

  /* Uhrzeit oben, blau & fett */
  .track-time {
    grid-area: time;
    font-weight: 800 !important;
    color: #FF017F !important;
    font-size: .95rem !important;
    margin: 0 0 .1rem 0 !important;
  }

  /* Titel-Zeile mit Label */
  .track-info p {
    grid-area: title;
    margin: 0 !important;
    font-size: .95rem !important;
    line-height: 1.3 !important;
    color: #000000 !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* max 2 Zeilen */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .track-info p::before {
    content: "Titel: ";
    font-weight: 700;
    color: #FF017F;
  }

  /* Künstler-Zeile mit Label */
  .track-info h3 {
    grid-area: artist;
    margin: 0 !important;
    font-size: .95rem !important;
	font-weight:400 !important;
    color: #000000 !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;  /* max 1 Zeile */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .track-info h3::before {
    content: "Künstler: ";
    font-weight: 700;
    color: #FF017F;
    margin-right: 2px;
  }
}


/* ==== "Mehr Titel anzeigen" Button ==== */
.more-tracks-btn {
  text-align: center;
  margin-top: 2rem;
}

.more-tracks-btn .button {
  display: inline-block;
  background: linear-gradient(135deg, #e71f85 0%, #e31834 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.more-tracks-btn .button:hover {
  background: linear-gradient(135deg, #d81b6c 0%, #cc152a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .more-tracks-btn {
    margin-top: 1.5rem;
  }

  .more-tracks-btn .button {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}


    /* MAIN */
    main {
      flex: 1;
      padding: 2rem 1rem;
      text-align: center; 
      background-color: #ededed;
    }

    h1 {
      font-size: 2.2rem;
      color: #FF017F;
      margin-top: 1rem;
    }

    p.subtext {
      font-size: 1.2rem;
      margin-top: 1rem;
      color: #444;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .highlight {
      color: #FF017F;
      font-weight: 600;
    }

    .play-button {
      background: linear-gradient(to right, #FF017F, #FF7E0D);
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1.1rem;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .play-button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }

    .image-container {
      margin: 2rem auto;
      max-width: 600px;
      width: 90%;
    }

    .image-container img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      object-fit: cover;
    }

    .coming-soon {
      font-size: 1.1rem;
      margin: 2rem 1rem;
      color: #333;
    }

    /* FOOTER */
footer{
  background: linear-gradient(90deg,#FF017F 0%,#FF7E0D 100%);
  color:#fff;
  text-align:center;
  padding: 2.4rem 1rem 2.4rem;   /* höher */
  font-size:1.05rem;
}
footer a{ color:#fff; text-decoration:none; font-weight:600; }
footer a:hover{ text-decoration:underline; }
    /* Responsive Anpassungen */
    @media (max-width: 768px) {
      header {
        justify-content: center;
      }

      h1 {
        font-size: 1.8rem;
      }

      p.subtext {
        font-size: 1rem;
      }

      .coming-soon {
        font-size: 1rem;
      }
	  
	 .hero {
		height: 45vh;
	  }

	  .hero-content h1 {
		font-size: 2rem;
	  }

	  .hero-content p {
		font-size: 1.05rem;
	  }
	  
	  .device-grid {
		gap: 1.5rem;
	  }
	  .device i {
		font-size: 2rem;
	  }
	  .devices h2 {
		font-size: 1.5rem;
	  }
    }


    @media (max-width: 480px) {
      h1 {
        font-size: 1.5rem;
      }

      footer {
        font-size: 0.9rem;
      }
    }
/* ==== HERO FIX: erzwinge vertikales Layout ==== */
.hero {
  position: relative;
  width: 100%;
  height: 45vh;
  background-image: url('../fileadmin/uploads/images/vinyl-2722233_1920.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Vollflächiges Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 40, 0.55) 0%, 
    rgba(50, 30, 60, 0.6) 40%,
    rgba(10, 5, 20, 0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Textcontainer */
.hero-content {
  /* ENTFERNE alle Fremdvererbungen von flex */
  display: block !important;
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 468px;
  margin: 0 auto;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Jeder Block untereinander */
.hero-content h1,
.hero-content p,
.hero-content .play-button {
  display: block !important;
  width: 100%;
  margin: 0 auto 1rem auto;
}

/* Titel */
.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

/* Untertitel */
.hero-content p {
  font-size: 1.2rem;
  color: #f7f7f7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  opacity: 0.95;
  line-height: 1.4;
}

/* Button */
.hero .play-button {
  display: inline-block !important; /* damit er nicht die ganze Breite füllt */
  background: linear-gradient(to right, #FF017F, #FF7E0D);
  border: none;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.hero .play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 40vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1.05rem; }
}

/* ===== VARIABLEN für die Player-Höhe ===== */
:root {
  /* Höhe, die wir unten freihalten – Desktop */
  --player-safe: 140px;
}

/* ===== PLAYER FOOTBAR (Updates) ===== */

/* genug Platz für den fixierten Player schaffen */
.with-player { padding-bottom: var(--player-safe); }


/* optionaler Fallback, falls der Body die Klasse mal nicht hat */
footer { position: relative; z-index: 1; }
#dynamic-footer {
	margin-top: auto;
}

/* Leiste außen */
.player-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  padding: 8px 12px; /* etwas mehr Rahmen bei größerem Cover */
}

/* Dark-Card innen */
.player-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
  180deg,
  rgba(43, 14, 26, 0.9) 0%,   /* oben 90 % Deckkraft */
  rgba(26, 10, 21, 0.9) 100%  /* unten 90 % Deckkraft */
);
backdrop-filter: blur(6px); /* optional: leichtes Glas-Effektgefühl */
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

/* Cover jetzt 100 × 100 */
.player-cover {
  width: 100px; height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 100px;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  
}

/* Meta-Texte */
.player-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1 1 auto;
}
.player-station {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-track {
  font-size: .95rem;
  color: #ddd;
  letter-spacing: .3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Play-Button (größer & klar) */
.player-cta {
  flex: 0 0 auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: grid; place-items: center;
}
.player-cta svg {
  width: 56px; height: 56px;      /* größer */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.player-cta svg circle { fill: #fff; }
.player-cta svg polygon { fill: #2b0e1a; } /* dunkles Weinrot wie Card */
.player-cta:hover svg { transform: scale(1.06); filter: drop-shadow(0 3px 10px rgba(0,0,0,.45)); }

/* ===== Responsive: Player etwas kompakter ===== */
@media (max-width: 1024px) {
  :root { --player-safe: 120px; }
  .player-cover { width: 88px; height: 88px; flex-basis: 88px; }
  .player-cta svg { width: 52px; height: 52px; }
}
@media (max-width: 768px) {
  :root { --player-safe: 100px; }
  .player-inner { padding: 10px 12px; gap: 12px; }
  .player-cover { width: 72px; height: 72px; flex-basis: 72px; }
  .player-station { font-size: .95rem; }
  .player-track   { font-size: .88rem; }
  .player-cta svg { width: 48px; height: 48px; }
}
@media (max-width: 480px) {
  :root { --player-safe: 84px; }
  /* Cover auf sehr klein ausblenden, um Höhe zu sparen */
  .player-cover { display: none; }
}

footer { position: relative; z-index: 1; }

/* ==== FOOTER ==== */
.site-footer{
  background: linear-gradient(135deg, #433d8b 0%, #7a4988 50%, #c86c80 100%);
  color:#fff;
  margin-top: 2rem;
  position: relative;
  padding-bottom: calc(2.2rem + var(--player-safe));
}
.site-footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 1.2rem 2.2rem;
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(3, minmax(0,1fr)) 280px;
  align-items: start;
  text-align: left;           /* <-- alles linksbündig */
}

/* Gruppen / Titles */
.f-group{ border:0; padding:0; }
.f-title{
  list-style:none;
  font-weight:800; font-size:1.2rem; line-height:1.2;
  cursor: default;
  margin: 0 0 .8rem 0;
  color:#fff;
}
.f-list{ list-style:none; margin:0; padding:0; }
.f-list li{ margin: .20rem 0; }
.f-list a{
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-size:1.0rem;
}
.f-list a:hover{ text-decoration: underline; }

/* Brand rechts */
.f-brand{
  display:flex; align-items:center; justify-content:flex-end;
}
.f-brand img{
  max-width: 220px; height:auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}

/* Divider & Bottom */
.f-divider{
  grid-column: 1 / -1;
  height: 0; border: 0; border-top: 1px solid rgba(255,255,255,.6);
  margin-top: 1.4rem;
}
.f-bottom{
  grid-column: 1 / -1;
  display:flex; align-items:center; justify-content:space-between;
  gap: 1rem; padding-top: .6rem;
}
.f-legal a{
  color:#fff; text-decoration:none; margin: 0 .7rem; font-weight:600;
}
.f-legal a:hover{ text-decoration: underline; }
.f-legal .sep{ opacity:.8; }

/* Social Icons */
.f-social{ display:flex; gap:.6rem; }
.f-social .icon{
  display:grid; place-items:center;
  width:36px; height:36px; border-radius:8px;
  border:1.5px solid rgba(255,255,255,.9);
  text-decoration:none;
}
.f-social .icon svg{ width:20px; height:20px; fill:#fff; }

/* --- Mobile: als Accordions --- */
/* --- Mobile: als Accordions --- */
@media (max-width: 900px){
  .site-footer .footer-wrap{
    grid-template-columns: 1fr;
    padding: 2.4rem 1rem 1.8rem;
    text-align: left;              /* <— neu */
  }

  .f-group {
    border-bottom: 1px solid rgba(255,255,255,.35);
    padding-bottom: .6rem;
    text-align: left;              /* <— neu */
  }

  .f-brand {
    justify-content: flex-start;   /* war centered */
    text-align: left;
  }

  .f-bottom {
    flex-direction: column;
    align-items: flex-start;       /* war center */
    justify-content: flex-start;   /* war center */
    gap: .8rem;
    text-align: left;              /* <— neu */
  }

  .f-social {
    justify-content: flex-start;   /* <— Icons links statt mittig */
  }
}


/* Details/Accordion Styling */
.f-group summary{
  list-style: none;
}
.f-group summary::-webkit-details-marker{ display:none; }

/* Desktop: Details immer offen, sieht wie Spalte aus */
@media (min-width: 901px){
  .f-group[open] > .f-list{ display:block; }
  .f-group > summary.f-title{ pointer-events:none; } /* nicht klickbar */
}

/* Mobile: echte Accordions */
@media (max-width: 900px){
  .f-group{
    border-bottom: 1px solid rgba(255,255,255,.35);
    padding-bottom: .6rem;
  }
  .f-group:last-of-type{ border-bottom: 0; }
  .f-group > summary.f-title{
    cursor: pointer;
    display:flex; align-items:center; justify-content:space-between;
    font-size: 1.35rem;
  }
  /* Pfeil */
  .f-group > summary.f-title::after{
    content:"";
    width: 10px; height: 10px;
    border-right: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
  .f-group[open] > summary.f-title::after{
    transform: rotate(-135deg);
  }
  .f-list{ margin-top: .4rem; }
}

/* Subpages */
.subpage .page {
  min-height: calc(100vh - var(--player-safe, 0px));
  background: #ededed;
}

/* HERO: Vollbreite, direkt am Header anliegend */
.page-hero {
  margin-top: 0;                 /* kein Abstand zum Header */
  padding: 2.8rem 1rem 2.2rem;   /* etwas großzügiger, wirkt edler */
  background: linear-gradient(135deg, #e71f85 0%, #e31834 55%, #f06a3a 100%);
  color: #fff;
  box-shadow: 0 1px 10px rgba(0,0,0,.08) inset;
  width:100%;                  /* über gesamte Fensterbreite */
  position: relative;
  border-bottom: 3px solid rgba(255,255,255,.15); /* dezente Abschlusslinie */
}

/* Inhalt des Heros */
.page-hero .page-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.page-hero .page-subtitle {
  color: rgba(255,255,255,.9);
  margin-top: .35rem;
  font-size: 1.1rem;
}

/* kleine Akzentlinie unter Titel */
.page-hero .page-container::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  margin-left:100px;
}

/* Inhaltsbereich */
.page-section { padding: 2rem 1rem 3rem; }
.page-container { max-width: 1400px; margin: 0 auto; }

/* neutrale Card für den Sendeplan */
.content-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 1.6rem;
}

/* optionales Top-Toolbar-Placeholder */
.content-toolbar { margin-bottom: .75rem; }

/* macht breite Tabellen mobil scrollbar statt overflow */
.content-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* doppelten Titel im eingebetteten Sendeplan ausblenden */
.content-scroll > center { display: none; }

/* Tabs minimal entzerren */
.content-card .tab { margin-top: .2rem; }
.content-card .lfm_api_schedule_table_head { margin-top: .4rem; }

/* Zugänglichkeit */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,1px,1px); white-space:nowrap; border:0;
}

/* Mobile Tuning */
@media (max-width: 768px){
  .page-hero {
    padding: 1.8rem 1rem 1.2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    left: 0;
  }
  .page-hero h1 { font-size: 1.6rem; }
  .content-card { border-radius: 14px; padding: 1.1rem; }
  
  /* kleine Akzentlinie unter Titel */
.page-hero .page-container::after {
  margin-left:20px !important;
}
}

/* ==== Sendeplan auf volle Kartenbreite bringen ==== */
.content-card .lfm_schedule {
  max-width: none !important;   /* 1165px Limit aufheben */
  width: 100% !important;       /* volle Breite der Card */
}

/* Außen-Padding der zentrier-Umhüllung reduzieren/entfernen */
.content-card #lfm_schedule_cen {
  padding: 0 !important;        /* vorher 20px */
  text-align: left;             /* muss nicht zentriert sein */
}

/* Optional: optisch bündiger an der Card-Innenkante */
.content-card .tab,
.content-card .tabcontent,
.content-card .lfm_api_schedule_table_head {
  border-left: 0;
  border-right: 0;
}

/* Wenn dir die Uhrzeit-Spalte zu schmal ist, etwas Luft geben */
@media (min-width: 1200px){
  .content-card .lfm_api_schedule_time,
  .content-card .lfm_api_schedule_head_time {
    width: 140px;               /* vorher 120px */
  }
}
