/* Compacte radio-console: zenderkeuze, status en bediening blijven apart leesbaar. */
.radio-dock {
  grid-template-columns: minmax(175px, .9fr) minmax(310px, 1.55fr) auto;
  gap: 14px;
  padding: 13px 15px;
  background: linear-gradient(118deg, #101a34, #172552 58%, #1b2046);
}

.radio-heading {
  min-width: 0;
  gap: 4px;
}

.radio-heading strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.radio-heading small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-stations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.radio-stations button {
  display: grid;
  gap: 1px;
  min-height: 45px;
  padding: 7px 8px;
  text-align: left;
  border-radius: 10px;
  background: #ffffff0c;
}

.radio-stations button b {
  font-size: 11px;
  letter-spacing: .02em;
}

.radio-stations button small {
  color: #aebde2;
  font: 10px/1 Manrope, sans-serif;
}

.radio-stations button.active small,
.radio-stations button:hover small {
  color: #24345a;
}

.radio-actions {
  display: flex;
  gap: 6px;
}

.radio-play,
.radio-stop {
  width: 37px;
  height: 45px;
  border-radius: 11px;
}

@media (max-width: 850px) {
  .radio-dock { grid-template-columns: 1fr auto; }
  .radio-stations { grid-column: 1 / -1; order: 3; }
  .radio-actions { grid-column: 2; grid-row: 1; }
}

@media (max-width: 540px) {
  .radio-dock {
    grid-template-columns: 1fr auto;
    gap: 13px 10px;
    padding: 15px;
    margin: 0 0 24px;
  }

  .radio-leds { display: none; }

  .radio-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .radio-heading strong { font-size: 18px; }

  .radio-heading small { font-size: 11px; }

  .radio-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 7px;
  }

  .radio-stations {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .radio-stations button {
    min-height: 51px;
    padding: 9px 10px;
    border-radius: 11px;
  }

  .radio-stations button b { font-size: 11px; }

  .radio-stations button small { font-size: 10px; }

  .radio-play,
  .radio-stop {
    width: 42px;
    height: 45px;
    border-radius: 12px;
  }

  .app-grid { margin-top: 2px; }
}
