/* style-radio.css — "ჩვენი რადიო" (Our Radio) page */

.radio-live {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.radio-live__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.radio-live__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
}

.radio-live--on .radio-live__dot {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(184, 39, 30, 0.6);
  animation: radio-pulse 1.6s infinite;
}

@keyframes radio-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 39, 30, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(184, 39, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 39, 30, 0); }
}

.radio-live__now {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.radio-live__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-live__play {
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
  border-radius: 4px;
  padding: 0.7rem 1.6rem;
  font-size: 15px;
  font-family: inherit;
  cursor: not-allowed;
}

.radio-live__vol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--muted);
}

.radio-live__vol input[type="range"] {
  accent-color: var(--accent);
}

/* Archive */

.radio-archive {
  margin-top: 3.5rem;
}

.radio-archive__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
}

.radio-archive__list {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
}

.radio-archive__row {
  display: grid;
  grid-template-columns: 3rem 6.5rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.radio-archive__row + .radio-archive__row {
  border-top: 1px solid var(--border);
}

.radio-archive__num {
  color: var(--muted);
  font-size: 13px;
}

.radio-archive__date {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.radio-archive__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin: 0 0 0.2rem;
}

.radio-archive__presenter {
  font-size: 13px;
  color: var(--muted);
}

.radio-archive__link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.radio-archive__link:hover {
  text-decoration: underline;
}

.radio-archive__empty {
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 560px) {
  .radio-archive__row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-areas:
      "num date"
      "info info"
      "link link";
  }
  .radio-archive__num  { grid-area: num; }
  .radio-archive__date { grid-area: date; text-align: right; }
  .radio-archive__info { grid-area: info; }
  .radio-archive__link { grid-area: link; }
}
