/* =========================================================
   UN/INFORM — AUDIO MOBILE
   Black Mode / mobiler Hörraum
   Neuer Aufbau: Karten + globaler fixed Player
   ========================================================= */

:root {
  --black: #000;
  --dark: #050505;
  --white: #fff;
  --muted-white: rgba(255,255,255,.68);
  --soft-white: rgba(255,255,255,.54);
  --line-white: rgba(255,255,255,.18);
  --radius: 20px;

  --font: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

/* =========================================================
   Grundfläche
   ========================================================= */

html,
body.template-audio-mobile {
  background: var(--black) !important;
}

body.template-audio-mobile {
  margin: 0;
  color: var(--white) !important;
  font-family: var(--body);
}

/* =========================================================
   Seitenhülle
   ========================================================= */

body.template-audio-mobile .site-shell {
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;

  background: var(--black) !important;
  color: var(--white) !important;

  border-left: 1px solid rgba(255,255,255,.22);
  border-right: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

body.template-audio-mobile .main {
  padding: 0 !important;
  background: var(--black) !important;
  color: var(--white) !important;
}

/* =========================================================
   Header
   ========================================================= */

body.template-audio-mobile .site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 28px !important;

  background: rgba(0,0,0,.94) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}

body.template-audio-mobile .brand {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.06em;
  text-transform: uppercase;

  color: var(--white) !important;
  text-decoration: none;
}

body.template-audio-mobile .brand span {
  color: var(--white) !important;
  opacity: .75;
}

body.template-audio-mobile .menu-toggle {
  font-family: var(--font);
  font-size: 22px;
  line-height: 1;

  background: none;
  border: 0;
  padding: 0;

  cursor: pointer;
  color: var(--white) !important;
}

body.template-audio-mobile .nav {
  display: none;

  position: absolute;
  left: 0;
  right: 0;
  top: 61px;

  padding: 14px 28px;

  background: var(--black) !important;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

body.template-audio-mobile .nav.is-open {
  display: grid;
  gap: 12px;
}

body.template-audio-mobile .nav a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;

  color: var(--white) !important;
  text-decoration: none;
}

/* =========================================================
   Seite
   ========================================================= */

body.template-audio-mobile .audio-mobile {
  padding: 54px 28px 86px;

  background: var(--black) !important;
  color: var(--white) !important;
}

/* =========================================================
   Hero
   ========================================================= */

body.template-audio-mobile .audio-hero {
  padding: 0 0 64px;
  margin: 0;
}

body.template-audio-mobile .audio-kicker {
  margin: 0 0 34px;

  font-family: var(--font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: var(--soft-white) !important;
}

body.template-audio-mobile .audio-hero h1 {
  max-width: 100%;
  margin: 0 0 34px;

  font-family: var(--font);
  font-size: clamp(42px, 9vw, 58px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;

  color: var(--white) !important;
}

body.template-audio-mobile .audio-intro {
  max-width: 420px;
  margin: 0;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;

  color: var(--muted-white) !important;
}

/* =========================================================
   Audio-Liste
   ========================================================= */

body.template-audio-mobile .audio-list {
  display: grid;
  gap: 28px;

  background: var(--black) !important;
}

/* =========================================================
   Audio-Karte
   ========================================================= */

body.template-audio-mobile .audio-card {
  overflow: hidden;

  padding: 30px 28px 32px;

  background: var(--dark) !important;
  color: var(--white) !important;

  border: 1px solid var(--line-white) !important;
  border-radius: var(--radius);
}

body.template-audio-mobile .audio-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;

  margin: 0 0 34px;

  font-family: var(--font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--soft-white) !important;
}

body.template-audio-mobile .audio-card h2 {
  max-width: 440px;
  margin: 0 0 30px;

  font-family: var(--font);
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.04em;
  text-transform: uppercase;

  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;

  color: var(--white) !important;
}

body.template-audio-mobile .audio-card .deck {
  max-width: 460px;
  margin: 0 0 28px;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;

  color: var(--muted-white) !important;
}

/* =========================================================
   Hören-Button in der Karte
   ========================================================= */

body.template-audio-mobile .audio-card-play {
  appearance: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  margin: 0 0 30px;
  padding: 0 28px;

  border: 2px solid var(--white);
  border-radius: 999px;

  background: var(--black);
  color: var(--white) !important;

  font-family: var(--font);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: none;
}

body.template-audio-mobile .audio-card-play:hover {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}

body.template-audio-mobile .audio-card-play:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* =========================================================
   Fehlende Datei
   ========================================================= */

body.template-audio-mobile .audio-player-missing {
  margin: 0 0 22px;
  padding: 14px 16px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;

  color: rgba(255,255,255,.58);
  font-size: 14px;
}

/* =========================================================
   Transcript
   ========================================================= */

body.template-audio-mobile .transcript {
  margin-top: 22px;
  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,.18);
  color: var(--white);
}

body.template-audio-mobile .transcript summary {
  cursor: pointer;
  list-style: none;

  font-family: var(--font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--soft-white) !important;
}

body.template-audio-mobile .transcript summary::-webkit-details-marker {
  display: none;
}

body.template-audio-mobile .transcript div {
  margin-top: 18px;

  font-size: 17px;
  line-height: 1.45;

  color: rgba(255,255,255,.72) !important;
}

/* =========================================================
   Globaler Audio-Player
   sitzt im Footer, wird aber fixed angezeigt
   ========================================================= */

body.template-audio-mobile .global-audio-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9999;

  width: calc(100% - 40px);
  max-width: 560px;

  transform: translateX(-50%);

  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 14px 16px;

  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;

  background: rgba(0,0,0,.94);
  color: var(--white) !important;

  box-shadow: 0 18px 50px rgba(0,0,0,.65);
  backdrop-filter: blur(12px);
}

body.template-audio-mobile .global-audio-player.is-active {
  display: flex;
}

body.template-audio-mobile .global-audio-info {
  min-width: 0;

  display: grid;
  gap: 3px;
}

body.template-audio-mobile .global-audio-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: rgba(255,255,255,.58) !important;
}

body.template-audio-mobile .global-audio-title {
  max-width: 360px;

  font-family: var(--font);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: uppercase;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  color: var(--white) !important;
}

body.template-audio-mobile .global-audio-status {
  font-size: 12px;
  line-height: 1.1;

  color: rgba(255,255,255,.52) !important;
}

body.template-audio-mobile .global-audio-toggle {
  flex: 0 0 auto;
  appearance: none;

  padding: 9px 14px;

  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;

  background: transparent;
  color: var(--white) !important;

  font-family: var(--font);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;

  cursor: pointer;
}

body.template-audio-mobile .global-audio-toggle:hover {
  background: rgba(255,255,255,.12);
}

body.template-audio-mobile .global-audio-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

body.template-audio-mobile .global-audio-player.is-playing .global-audio-toggle {
  background: var(--white);
  color: var(--black) !important;
}

/* =========================================================
   Footer
   ========================================================= */

body.template-audio-mobile .site-footer {
  padding: 24px 28px 130px;

  border-top: 1px solid rgba(255,255,255,.18) !important;

  background: var(--black) !important;
  color: rgba(255,255,255,.54) !important;

  font-size: 13px;
}

body.template-audio-mobile .footer-mark,
body.template-audio-mobile .footer-nav a {
  color: var(--white) !important;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 480px) {
  body.template-audio-mobile .site-shell {
    max-width: none;
    border-left: 0;
    border-right: 0;
  }

  body.template-audio-mobile .site-header,
  body.template-audio-mobile .audio-mobile,
  body.template-audio-mobile .site-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body.template-audio-mobile .nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.template-audio-mobile .audio-mobile {
    padding-top: 46px !important;
    padding-bottom: 82px;
  }

  body.template-audio-mobile .audio-hero {
    padding-bottom: 58px;
  }

  body.template-audio-mobile .audio-hero h1 {
    margin-bottom: 30px;
    font-size: clamp(40px, 13vw, 54px);
  }

  body.template-audio-mobile .audio-intro {
    font-size: 19px;
  }

  body.template-audio-mobile .audio-card {
    padding: 28px 24px 30px;
    border-radius: 18px;
  }

  body.template-audio-mobile .audio-card h2 {
    margin-bottom: 28px;
    font-size: clamp(25px, 8vw, 34px);
  }

  body.template-audio-mobile .audio-card .deck {
    margin-bottom: 26px;
    font-size: 19px;
  }

  body.template-audio-mobile .global-audio-player {
    bottom: 12px;

    width: calc(100% - 24px);
    max-width: none;

    padding: 13px 14px;
    border-radius: 16px;
    gap: 14px;
  }

  body.template-audio-mobile .global-audio-title {
    max-width: 230px;
    font-size: 14px;
  }

  body.template-audio-mobile .global-audio-toggle {
    padding: 9px 12px;
    font-size: 12px;
  }

  body.template-audio-mobile .site-footer {
    padding-bottom: 120px !important;
  }
}

@media (min-width: 860px) {
  body.template-audio-mobile .site-shell {
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
  }
}
body.template-audio-mobile button.audio-card-play {
  appearance: none !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 52px !important;
  margin: 0 0 30px !important;
  padding: 0 28px !important;

  border: 2px solid #fff !important;
  border-radius: 999px !important;

  background: #000 !important;
  color: #fff !important;

  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;

  cursor: pointer !important;
  box-shadow: none !important;
}

body.template-audio-mobile button.audio-card-play:hover {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}