/* ============ Archiv ============ */
.archive-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .archive-item {
      display: grid;
      grid-template-columns: 160px 1fr auto;
      gap: 24px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background 0.15s;
    }
    .archive-item:hover { background: rgba(255,255,255,0.015); }
    .archive-item__thumb {
      width: 160px;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border);
    }
    .archive-item__thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      background:
        repeating-linear-gradient(45deg,
          rgba(255,255,255,0.015) 0 12px,
          rgba(255,255,255,0.04) 12px 24px),
        linear-gradient(135deg, #17171a 0%, #0e0e10 100%);
    }
    .archive-item:hover .archive-item__thumb img { transform: scale(1.04); }
    .archive-item__body { min-width: 0; }
    .archive-item__meta {
      display: flex;
      gap: 12px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 8px;
      align-items: center;
      flex-wrap: wrap;
    }
    .archive-item__title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--text);
      margin: 0 0 6px;
      line-height: 1.2;
    }
    .archive-item:hover .archive-item__title { color: var(--accent-2); }
    .archive-item__teaser {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .archive-item__arrow {
      font-family: var(--font-mono);
      color: var(--text-dim);
      font-size: 1.2rem;
      padding: 0 8px;
    }
    .archive-item:hover .archive-item__arrow { color: var(--accent); }
    .archive-item__ext {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      padding: 2px 6px;
      border: 1px solid var(--border);
      border-radius: 2px;
    }

    .year-heading {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--text);
      margin: 48px 0 20px;
      padding-left: 14px;
      border-left: 4px solid var(--accent);
      line-height: 1;
    }
    .year-heading:first-child { margin-top: 0; }
    .year-heading .year-count {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--text-dim);
      font-weight: 400;
      margin-left: 12px;
      letter-spacing: 0.1em;
      vertical-align: middle;
    }

    .archive-loading {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      letter-spacing: 0.06em;
    }
    .archive-loading::after {
      content: '';
      display: inline-block;
      margin-left: 8px;
      width: 8px; height: 8px;
      background: var(--accent);
      animation: pulse 1.4s infinite;
    }

    .archive-search {
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 0 14px;
      transition: border-color 0.15s;
    }
    .archive-search:focus-within { border-color: var(--accent); }
    .archive-search svg { color: var(--text-dim); width: 18px; height: 18px; }
    .archive-search input {
      flex: 1;
      padding: 12px 0;
      background: transparent;
      border: none;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
    }
    .archive-search input::placeholder { color: var(--text-dim); }
    .archive-search__count {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    @media (max-width: 640px) {
      .archive-item { grid-template-columns: 100px 1fr; gap: 14px; }
      .archive-item__thumb { width: 100px; }
      .archive-item__arrow { display: none; }
      .archive-item__title { font-size: 1rem; }
    }

/* ============ Radiosender ============ */
.radio-hero {
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(ellipse at 20% 30%, rgba(217, 120, 69, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(217, 120, 69, 0.10), transparent 60%),
        linear-gradient(180deg, rgba(217, 120, 69, 0.05), transparent 90%);
    }
    .radio-hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @media (max-width: 900px) { .radio-hero__grid { grid-template-columns: 1fr; gap: 32px; } }

    .radio-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(217, 120, 69, 0.10);
      border: 1px solid rgba(217, 120, 69, 0.35);
      padding: 6px 12px;
      border-radius: 3px;
      margin-bottom: 20px;
    }
    .radio-eyebrow::before {
      content: '';
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 1.8s cubic-bezier(.66,0,0,1) infinite;
    }
    .radio-hero__title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      line-height: 1;
      margin: 0 0 20px;
    }
    .radio-hero__title strong {
      color: var(--accent);
      font-weight: 700;
    }
    .radio-hero__desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 24px;
      max-width: 480px;
    }
    .radio-hero__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      background: var(--accent);
      color: white;
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.15s;
    }
    .radio-hero__cta:hover { background: var(--accent-2); transform: translateY(-1px); }

    /* Player card */
    .player-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(217, 120, 69, 0.10);
      position: relative;
      overflow: hidden;
    }
    .player-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
    }
    .player-card__header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .player-card__logo {
      width: 64px; height: 64px;
      border-radius: 6px;
      object-fit: cover;
      border: 1px solid var(--border);
      flex-shrink: 0;
    }
    .player-card__meta {
      flex: 1;
      min-width: 0;
    }
    .player-card__name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin: 0 0 4px;
      color: var(--text);
    }
    .player-card__station {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .player-card__station::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 1.8s cubic-bezier(.66,0,0,1) infinite;
    }
    .player-card__frame {
      position: relative;
      background: #000;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border);
      min-height: 480px;
    }
    .player-card__frame iframe {
      display: block;
      width: 100%;
      min-height: 480px;
      border: 0;
    }
    .player-card__footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .player-card__footer a {
      color: var(--text-muted);
      transition: color 0.15s;
    }
    .player-card__footer a:hover { color: var(--accent); }

    /* Info section */
    .radio-info {
      padding: 60px 0 80px;
    }
    .radio-info__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 780px) { .radio-info__grid { grid-template-columns: 1fr; } }

    .info-tile {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 28px;
      transition: all 0.2s;
    }
    .info-tile:hover {
      border-color: var(--border-strong);
      transform: translateY(-2px);
    }
    .info-tile__icon {
      width: 44px; height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(217, 120, 69, 0.12);
      border: 1px solid rgba(217, 120, 69, 0.35);
      color: var(--accent);
      margin-bottom: 18px;
      border-radius: 4px;
    }
    .info-tile__icon svg { width: 22px; height: 22px; }
    .info-tile h3 {
      font-size: 1.15rem;
      margin: 0 0 10px;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .info-tile p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0;
    }

/* ============ Redaktion ============ */
.team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    @media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: 24px; } }

    .team-card {
      background: var(--surface);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.2s;
      scroll-margin-top: 100px;
    }
    .team-card:hover, .team-card:target {
      border-color: var(--border-strong);
      transform: translateY(-2px);
    }
    .team-card:target {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px var(--accent), 0 20px 40px rgba(0,0,0,0.4);
    }

    .team-card__photo {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      background:
        repeating-linear-gradient(45deg,
          rgba(255,255,255,0.015) 0 12px,
          rgba(255,255,255,0.04) 12px 24px),
        linear-gradient(135deg, #17171a 0%, #0e0e10 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-faint);
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-align: center;
      padding: 20px;
    }
    .team-card__photo::before {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px dashed rgba(255,255,255,0.10);
    }
    .team-card__photo img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .team-card__photo-label {
      position: relative;
      z-index: 1;
      max-width: 80%;
      line-height: 1.5;
    }
    .team-card__photo-label strong {
      display: block;
      color: var(--text-muted);
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
      font-weight: 500;
    }

    .team-card__body {
      padding: 24px 24px 28px;
    }
    .team-card__role {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 8px;
    }
    .team-card__name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text);
      margin: 0 0 14px;
      line-height: 1.1;
    }
    .team-card__bio {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 20px;
    }
    .team-card__links {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .team-card__link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      transition: all 0.15s;
    }
    .team-card__link:hover {
      border-color: var(--accent);
      color: var(--text);
      padding-left: 16px;
    }
    .team-card__link-chip {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 2px 8px;
      border: 1px solid rgba(217, 120, 69, 0.35);
      background: rgba(217, 120, 69, 0.08);
      border-radius: 2px;
      flex-shrink: 0;
    }
    .team-card__links-empty {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      padding: 10px 0;
    }
    .team-card__links-title {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin: 0 0 10px;
    }

    /* Social buttons row */
    .team-card__socials {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 20px;
    }
    .team-social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: all 0.15s;
    }
    .team-social-btn:hover {
      border-color: var(--accent);
      background: var(--accent-glow);
      color: var(--accent-2);
      transform: translateY(-1px);
    }
    .team-social-btn svg {
      width: 14px; height: 14px;
      flex-shrink: 0;
    }
    .team-social-btn--website svg { color: var(--accent); }
