
:root{
 --blue:#1e90ff;
 --blue2:#60a5fa;
 --bg:#f4f7fb;
 --glass:rgba(255,255,255,.75);
 --text:#0f172a;
 --muted:#475569;
}

/* RESET */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
a{text-decoration:none;color:inherit}

/* BODY */
body{
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

/* =====================
   HEADER
===================== */
header{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* =====================
   HEADER CARD
===================== */
.header-card{
  max-width: 1400px;
  margin: 22px auto 40px;
  background: var(--glass);
  backdrop-filter: blur(22px);
  border-radius: 34px;
  box-shadow:
    0 40px 120px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;

  transform: translateZ(0) scale(1);
  transform-origin: top center;

  transition:
    transform .32s ease,
    margin .32s ease,
    border-radius .32s ease;
}

/* =====================
   NAV
===================== */
.header-nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 22px 30px;
  transition: padding .32s ease;
}

.logo{
  height: 40px;
  transition: height .32s ease;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a{
  position: relative;
  padding: 10px 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--blue2));
  border-radius:99px;
  transform:translateX(-50%);
  transition:.32s ease;
}

.nav a:hover{color:var(--blue)}
.nav a:hover::after{width:100%}

/* =====================
   LISTEN BUTTON
===================== */
.listen-btn{
  position:relative;              /* wichtig für Glow & Shine */
  overflow:hidden;

  padding:16px 34px;
  border-radius:999px;
  font-size:.7rem;
  letter-spacing:.22em;
  font-weight:900;
  text-transform:uppercase;

  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;

  box-shadow:0 18px 40px rgba(6,130,255,.45);
  transition:all .32s ease;

  margin-left:-14px;              /* 🔥 weiter nach links */

  animation:listenPulse 3.4s ease-in-out infinite;
}

/* 🔵 Sanfter Pulse */
@keyframes listenPulse{
  0%,100%{
    box-shadow:0 18px 40px rgba(6,130,255,.45);
    transform:scale(1);
  }
  50%{
    box-shadow:0 26px 60px rgba(6,130,255,.75);
    transform:scale(1.045);
  }
}

/* ✨ Lichtstreif (blick-blick) */
.listen-btn::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-140%;
  width:70%;
  height:220%;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.45) 50%,
    transparent 100%
  );
  animation:listenShine 4.8s ease-in-out infinite;
}

@keyframes listenShine{
  0%{ left:-140%; }
  65%{ left:-140%; }
  100%{ left:160%; }
}

/* 👆 Klick-Feedback */
.listen-btn:active{
  transform:scale(0.93);
  box-shadow:0 10px 24px rgba(6,130,255,.6);
}

/* Optional: Hover minimal edler */
.listen-btn:hover{
  transform:translateY(-2px);
}


/* =====================
   NOW BAR
===================== */
.header-now{
  display:grid;
  grid-template-columns:1.6fr 1.2fr .6fr;
  gap:30px;
  padding:26px 30px 34px;
  border-top:1px solid rgba(0,0,0,.06);
  transition: padding .32s ease;
}

.label{
  margin-bottom:6px;
  line-height:1;
}

/* ARTIST – fett & dominant */
.artist{
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:.01em;
  line-height:1.15;
  color:#0f172a;
}

.eq{
  display:flex;
  gap:6px;
  height:22px;
  align-items:flex-end;
}

.eq span{
  width:5px;
  background:linear-gradient(180deg,var(--blue),var(--blue2));
  border-radius:4px;
  animation:eqWave 1.2s ease-in-out infinite;
  transform-origin:bottom;
}

/* 🔊 Unterschiedliche Bewegungen */
.eq span:nth-child(1){ animation-delay: 0s; }
.eq span:nth-child(2){ animation-delay: .15s; }
.eq span:nth-child(3){ animation-delay: .3s; }
.eq span:nth-child(4){ animation-delay: .45s; }
@keyframes eqWave{
  0%   { height:30%; }
  25%  { height:80%; }
  50%  { height:45%; }
  75%  { height:100%; }
  100% { height:35%; }
}

.listeners .count{
  font-size:2rem;
  font-weight:900;
  transition: font-size .32s ease;
}

/* =====================
   SHRINK STATE
===================== */
header.shrink .header-card{
  transform: scale(0.94);
  margin-top: 8px;
  border-radius: 22px;
}

header.shrink .header-nav{
  padding: 12px 22px;
}

header.shrink .logo{
  height: 28px;
}

header.shrink .listen-btn{
  padding: 10px 20px;
  font-size: .6rem;
}

header.shrink .header-now{
  padding: 14px 22px 18px;
}

header.shrink .artist{
  font-size: 1.05rem;
}

header.shrink .listeners .count{
  font-size: 1.4rem;
}

header.shrink .eq{
  height: 18px;
}

header.shrink .eq span{
  width: 4px;
}
/* =====================
   NEWS DETAIL – HEADER IMMER KLEIN
===================== */
body.news-detail header .header-card{
  transform: scale(.94);
  margin-top: 10px;
  border-radius: 22px;
}

body.news-detail header .header-nav{
  padding: 12px 22px;
}

body.news-detail header .logo{
  height: 28px;
}

body.news-detail header .listen-btn{
  padding: 10px 20px;
  font-size: .6rem;
}

body.news-detail header .header-now{
  padding: 14px 22px 18px;
}

body.news-detail header .artist{
  font-size: 1.05rem;
}

body.news-detail header .listeners .count{
  font-size: 1.4rem;
}

body.news-detail header .eq{
  height: 18px;
}

body.news-detail header .eq span{
  width: 4px;
}


/* =====================
   SLIDER
===================== */
.slider{
 max-width:1400px;
 margin:0 auto 80px;
 height:520px;
 border-radius:36px;
 overflow:hidden;
 position:relative;
 box-shadow:0 50px 120px rgba(0,0,0,.18);
}
.slide{
 position:absolute;
 inset:0;
 background-size:cover;
 background-position:center;
 opacity:0;
 transition:opacity 1s ease;
}
.slide.active{opacity:1;z-index:1}
.slide::before{
 content:'';
 position:absolute;
 inset:0;
 background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.15));
}
.slide-content{
 position:absolute;
 left:60px;
 bottom:60px;
 max-width:520px;
 color:#fff;
}
.slide-content h2{
 font-size:2.8rem;
 margin:0 0 14px;
 font-weight:900;
}
.slide-content p{
 font-size:1.05rem;
 line-height:1.6;
}
.slide-content a{
 display:inline-block;
 margin-top:20px;
 padding:14px 34px;
 border-radius:999px;
 background:linear-gradient(135deg,var(--blue),var(--blue2));
 font-weight:900;
 letter-spacing:.12em;
 text-transform:uppercase;
}

@media(max-width:900px){
 .nav{display:none}
 .header-now{grid-template-columns:1fr}
 .listeners{text-align:left}
 .slide-content{left:30px;right:30px}
 .slide-content h2{font-size:2rem}
}

/* =====================
   PFEILE
===================== */
.slider-arrow{
 position:absolute;
 top:50%;
 transform:translateY(-50%);
 width:52px;
 height:52px;
 border-radius:50%;
 background:rgba(0,0,0,.45);
 color:#fff;
 display:flex;
 align-items:center;
 justify-content:center;
 font-size:26px;
 cursor:pointer;
 z-index:10;
 transition:.25s;
 user-select:none;
}
.slider-arrow:hover{background:rgba(0,0,0,.75)}
.slider-arrow.left{left:20px}
.slider-arrow.right{right:20px}

@media(max-width:900px){
 .slider-arrow{
   width:42px;
   height:42px;
   font-size:22px;
 }
 .slide-content{left:30px;right:30px}
}



/* =========================
   SERVICES – MODERN CARDS
========================= */

.services-section{
  position:relative;
  padding:140px 24px;
  background:linear-gradient(180deg,#f8fafc 0%, #eef2f7 100%);
  overflow:hidden;
}

.services-inner{
  max-width:1200px;
  margin:0 auto;
}

/* HEAD */
.services-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 90px;
}

.services-head h2{
  font-size:2.8rem;
  font-weight:900;
  margin-bottom:18px;
  color:#0f172a;
}

.services-head p{
  font-size:1.1rem;
  line-height:1.8;
  color:#64748b;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.service-item{
  position:relative;
  padding:40px 36px;
  border-radius:28px;
  background:#ffffff;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  transition:.35s cubic-bezier(.22,1,.36,1);
}

.service-item:hover{
  transform:translateY(-10px);
  box-shadow:0 50px 120px rgba(0,0,0,.12);
}

/* NUMBER */
.service-number{
  font-size:3.5rem;
  font-weight:900;
  color:#e2e8f0;
  margin-bottom:18px;
}

/* TITLE */
.service-item h3{
  font-size:1.5rem;
  font-weight:900;
  margin-bottom:14px;
  color:#0f172a;
}

/* TEXT */
.service-item p{
  font-size:1rem;
  line-height:1.75;
  color:#64748b;
}

/* =========================
   DARK MODE – CLEAN GREY
========================= */

body.night .services-section{
  background:linear-gradient(180deg,#0f172a 0%, #111827 100%);
}

body.night .services-head h2{
  color:#f1f5f9;
}

body.night .services-head p{
  color:#94a3b8;
}

body.night .service-item{
  background:#1e293b;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

body.night .service-item:hover{
  box-shadow:0 50px 120px rgba(0,0,0,.8);
}

body.night .service-number{
  color:#334155;
}

body.night .service-item h3{
  color:#f8fafc;
}

body.night .service-item p{
  color:#94a3b8;
}
/* Standard: Dark Logo ausblenden */
.about-logo .logo-dark{
  display:none;
}

/* Wenn Dark Mode aktiv */
body.night .about-logo .logo-light{
  display:none;
}

body.night .about-logo .logo-dark{
  display:block;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .services-section{
    padding:100px 20px;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .services-head h2{
    font-size:2.2rem;
  }

  .service-item{
    padding:32px 26px;
    border-radius:22px;
  }
}

/* =====================
   NEWS – RADIO PULSE DESIGN
===================== */

.news-section{
  position:relative;
  padding:130px 24px;

  background:linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 100%
  );

  overflow:hidden;
}

/* sanfter Glow im Hintergrund */
.news-section::before{
  content:'';
  position:absolute;
  inset:-200px;
  background:
    radial-gradient(600px 400px at 20% 10%, rgba(30,144,255,.12), transparent 60%),
    radial-gradient(600px 400px at 80% 90%, rgba(56,189,248,.12), transparent 60%);
  z-index:0;
}

.news-inner{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* GRID */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.news-card{
  position:relative;

  background:rgba(255,255,255,.7);
  backdrop-filter:blur(18px);

  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.4);

  box-shadow:0 20px 60px rgba(0,0,0,.08);

  transition:.35s cubic-bezier(.22,1,.36,1);

  display:flex;
  flex-direction:column;
}

/* Glow Border Effekt */
.news-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background:linear-gradient(135deg,#1e90ff,#38bdf8);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.3s ease;

  pointer-events:none; /* 🔥 FIX */
}


.news-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 30px 80px rgba(30,144,255,.25);
}

.news-card:hover::after{
  opacity:1;
}

/* IMAGE */
.news-image{
  height:170px;
  overflow:hidden;
}

.news-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.news-card:hover .news-image img{
  transform:scale(1.06);
}

/* CONTENT */
.news-content{
  padding:20px 22px 14px;
}

.news-content time{
  display:block;
  font-size:.65rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#94a3b8;
  margin-bottom:8px;
}

.news-content h3{
  font-size:1.15rem;
  font-weight:900;
  line-height:1.35;
  color:#0f172a;
}

/* LINK */
.news-link{
  margin:0 22px 22px;
  font-size:.7rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  color:#1e90ff;
  display:inline-flex;
  gap:6px;
  align-items:center;
  transition:.2s;
}

.news-link:hover{
  transform:translateX(4px);
}


/* =====================
   DARK MODE – ULTRA CLEAN
===================== */

body.night .news-section{
  background:linear-gradient(
    180deg,
    #0b1220 0%,
    #0f172a 100%
  );
}

body.night .news-card{
  background:rgba(15,23,42,.75);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 25px 70px rgba(0,0,0,.6);
}

body.night .news-card:hover{
  box-shadow:0 35px 90px rgba(56,189,248,.25);
}

body.night .news-content h3{
  color:#f8fafc;
}

body.night .news-content time{
  color:#64748b;
}

body.night .news-link{
  color:#38bdf8;
}


/* =====================
   MOBILE
===================== */

@media(max-width:900px){

  .news-section{
    padding:90px 18px 110px;
  }

  .news-grid{
    gap:22px;
  }

  .news-image{
    height:150px;
  }

}



.header-now{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  align-items:center;        /* vertikal */
  justify-items:stretch;     /* 🔥 NICHT center */
  gap:40px;
  padding:26px 30px;
  border-top:1px solid rgba(0,0,0,.06);
}
.now-block,
.weather-block,
.next-block,
.listeners{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* 🔥 LINKS */
  text-align:left;
}




.weather-row{
  font-size:1.35rem;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:6px;
}


.show-meta{
  margin-top:4px;
  font-size:.75rem;
  color:#6b7280;
}

.moderator-mini{
  margin-top:4px;
  font-size:.7rem;
  color:#6b7280;
  background:rgba(0,0,0,.05);
  padding:4px 10px;
  border-radius:999px;
  width:fit-content;
}

/* =====================
   TEAM PAGE
===================== */

.team-page{
  background:#f4f7fb;
}

/* =====================
   HEAD
===================== */

.team-section{
  padding:24px;
}

.team-inner{
  max-width:1200px;
  margin:0 auto;
}

.team-head{
  max-width:700px;
  margin-bottom:100px;
}

.team-head h1{
  font-size:3.2rem;
  font-weight:900;
  margin-bottom:18px;
  background:linear-gradient(90deg,#1e90ff,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.team-head p{
  font-size:1.15rem;
  line-height:1.8;
  color:#475569;
}

/* =====================
   GRID
===================== */

.team-grid-large{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:56px;
}

/* =====================
   CARD
===================== */

.team-card-large{
  text-decoration:none;
  color:inherit;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  border-radius:32px;
  padding:104px 30px 40px;
  position:relative;
  text-align:center;
  box-shadow:
    0 45px 120px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease;
}

.team-card-large:hover{
  transform:translateY(-18px) scale(1.03);
  box-shadow:
    0 90px 180px rgba(30,144,255,.28),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* =====================
   AVATAR
===================== */

.team-avatar-large{
  position:absolute;
  top:-72px;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  padding:6px;
  box-shadow:
    0 26px 70px rgba(0,0,0,.35),
    0 0 0 8px rgba(30,144,255,.14);
}

.team-avatar-large img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* =====================
   TEXT
===================== */

.team-info-large strong{
  display:block;
  font-size:1.55rem;
  font-weight:900;
  color:#0f172a;
  margin-bottom:12px;
}

.team-info-large span{
  display:inline-block;
  padding:8px 18px;
  font-size:.75rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  border-radius:999px;
  background:linear-gradient(135deg,#1e90ff,#38bdf8);
  color:#fff;
  font-weight:900;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:600px){
  .team-card-large{padding-top:92px}
  .team-avatar-large{width:120px;height:120px;top:-60px}
  .team-head h1{font-size:2.4rem}
}
/* =====================
   FOOTER
===================== */

.site-footer{
  background:linear-gradient(180deg,#0f172a,#020617);
  color:#cbd5f5;
  padding:80px 24px 30px;
  margin-top:140px;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:60px;
}

.footer-brand img{
  width:160px;
  margin-bottom:16px;
}

.footer-brand p{
  font-size:.95rem;
  color:#94a3b8;
  line-height:1.6;
}

.site-footer h4{
  font-size:.9rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#38bdf8;
  margin-bottom:18px;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.site-footer li{
  margin-bottom:10px;
}

.site-footer a{
  color:#cbd5f5;
  text-decoration:none;
  font-size:.95rem;
  transition:color .25s ease;
}

.site-footer a:hover{
  color:#38bdf8;
}

.social-icons{
  display:flex;
  gap:14px;
}

.social-icons a{
  font-size:1.4rem;
  transition:transform .25s ease;
}

.social-icons a:hover{
  transform:translateY(-4px) scale(1.15);
}

.footer-bottom{
  margin-top:70px;
  text-align:center;
  font-size:.85rem;
  color:#64748b;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
}

/* RESPONSIVE */
@media(max-width:600px){
  .site-footer{
    padding-top:60px;
  }
}

/* =====================
   KONTAKT – MODERN CLEAN
===================== */

.contact{
  padding:24px;
  background:#f4f7fb;
}

.contact-inner{
  max-width:1100px;
  margin:0 auto;
}

.contact-card{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(20px);
  border-radius:30px;
  padding:42px 48px;
  box-shadow:0 40px 120px rgba(0,0,0,.14);
}

/* HEAD */
.contact-head{
  margin-bottom:30px;
}

.contact-head h1{
  font-size:2.6rem;
  font-weight:900;
  background:linear-gradient(90deg,#1e90ff,#60a5fa);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-head p{
  margin-top:8px;
  font-size:1rem;
  color:#475569;
  max-width:620px;
}

/* SUCCESS */
.contact-success{
  background:#e8f1ff;
  padding:14px 18px;
  border-radius:14px;
  font-weight:600;
  margin-bottom:22px;
}

/* FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  font-size:.9rem;
  background:#fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#1e90ff;
  box-shadow:0 0 0 3px rgba(30,144,255,.15);
}

/* BUTTON */
.contact-form button{
  align-self:flex-end;
  margin-top:10px;
  padding:14px 48px;
  border-radius:999px;
  border:none;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.25em;
  text-transform:uppercase;
  cursor:pointer;
  background:linear-gradient(135deg,#1e90ff,#60a5fa);
  color:#fff;
  box-shadow:0 18px 40px rgba(30,144,255,.35);
  transition:.25s;
}

.contact-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 60px rgba(30,144,255,.45);
}

/* MOBILE */
@media(max-width:900px){
  .contact-card{
    padding:30px 24px;
  }

  .contact-form .row{
    grid-template-columns:1fr;
  }

  .contact-form button{
    width:100%;
  }
}
.badge-category{
  background:#eef2ff;
  color:#3730a3;
  padding:.25rem .6rem;
  border-radius:999px;
  font-size:.7rem;
  font-weight:700;
}
/* =========================
   MOBILE ONLY – FINAL
========================= */
@media (max-width:768px){

  body{
    overflow-x:hidden;
  }

  /* =========================
     SLIDER – ECHT MITTIG
  ========================= */
  .slider{
    width:100%;              /* 🔥 keine Prozent-Spielerei */
    height:260px;
    margin:0;                /* 🔥 kein Auto-Margin */
    border-radius:0;         /* 🔥 keine optische Verschiebung */
    overflow:hidden;
  }

  .slide{
    background-position:center;
  }

  /* 🔥 CONTENT MATHEMATISCH ZENTRIERT */
  .slide-content{
    position:absolute;
    left:50%;
    transform:translateX(-50%);     /* echtes Center */

    bottom:20px;
    width:calc(100% - 40px);        /* gleiche Ränder wie vorher */
    max-width:520px;

    text-align:center;
  }

  .slide-content h2{
    font-size:1.2rem;
    line-height:1.3;
  }

  .slide-content p{
    font-size:0.9rem;
    margin-top:6px;
  }

  .slide-btn{
    display:inline-block;
    padding:10px 20px;
    font-size:0.85rem;
    margin-top:10px;
  }

  /* =========================
     GENERELLE SEKTIONEN
  ========================= */
  section,
  .container{
    padding:24px 16px;
  }

  h1, h2, h3{
    text-align:center;
  }

  /* =========================
     CARDS / TEAM / NEWS
  ========================= */
  .head-team-grid,
  .news-grid,
  .partner-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }

  /* =========================
     FOOTER
  ========================= */
  footer{
    text-align:center;
  }
}

/* ===============================
   MOBILE: RADIO INFO AUSBLENDEN
=============================== */
@media (max-width:900px){

  .jetzt-laeuft,
  .now-playing,
  .wetter,
  .weather,
  .naechste-sendung,
  .next-show,
  .zuhoerer,
  .listener-count,
  .listeners,
  .radio-stats{
    display:none !important;
  }

  .radio-info-wrapper{
    max-height:0;
    overflow:hidden;
  }
}
/* =====================
   BASIS
===================== */
body{
  font-family:Inter,system-ui,sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

/* =====================
   LAYOUT
===================== */
.team-section{
  padding:28px 18px 120px;
}

.team-inner{
  max-width:1200px;
  margin:0 auto;
}

/* =====================
   HEAD
===================== */
.team-head{
  margin:10px 0 28px;
}

.team-kicker{
  font-size:.7rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#64748b;
  font-weight:700;
}

.team-head h1{
  font-size:2.4rem;
  font-weight:800;
  margin:4px 0;
}

.team-head p{
  color:#475569;
}

/* =====================
   FILTER
===================== */
.team-filter{
  display:flex;
  gap:10px;
  margin:24px 0 40px;
  flex-wrap:wrap;
}

.team-filter button{
  padding:8px 16px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
}

.team-filter button.active{
  background:#0f172a;
  color:#fff;
}

/* =====================
   CATEGORY
===================== */
.team-category{
  margin:48px 0 18px;
  font-size:1.25rem;
  font-weight:700;
}

/* =====================
   GRID
===================== */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:28px;
}

/* =====================
   CARD – GROSS & KLAR
===================== */
.team-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  text-decoration:none;
  transition:.25s ease;
}

.team-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* IMAGE */
.team-image{
  width:100%;
  height:260px;
  background:#e5e7eb;
}

.team-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* INFO */
.team-info{
  padding:16px;
  text-align:center;
}

.team-info strong{
  display:block;
  font-size:1rem;
  font-weight:700;
}

.team-info span{
  display:block;
  margin-top:4px;
  font-size:.65rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#64748b;
}

/* =====================
   MOBILE – NICHT VOLLBILD!
===================== */
@media(max-width:640px){

  .team-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .team-image{
    height:160px;
  }

  .team-info{
    padding:12px 10px;
  }

  .team-info strong{
    font-size:.85rem;
  }

  .team-info span{
    font-size:.55rem;
  }
}
/* =========================
   DARK MODE TOGGLE BUTTON
========================= */

.dark-toggle{
  background:#f1f5f9;
  border:none;
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:1.1rem;
  transition:
    background .3s ease,
    transform .2s ease;
}

.dark-toggle:hover{
  background:#e2e8f0;
  transform:scale(1.08);
}
/* =========================================
   FORCE MOBILE SINGLE COLUMN
========================================= */

@media (max-width: 900px){

  .schedule-page *{
    max-width:100% !important;
  }

  .schedule-page .schedule-day,
  .schedule-page .schedule-card,
  .schedule-page .schedule-grid,
  .schedule-page .schedule-list{
    width:100% !important;
  }

  .schedule-page .schedule-grid,
  .schedule-page .schedule-list{
    display:flex !important;
    flex-direction:column !important;
  }

}
@media (max-width:900px){
  .desktop-header{
    display:none !important;
  }
}