/* =====================================================
   RADIOS PAGE – BeatSessions
===================================================== */

.radio-list {
  margin: 0 0 80px;
}

/* TITLE */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.section-title .dot {
  color: var(--signature-color);
}

/* EMPTY STATE */
.radio-empty-text {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ROW */
.radio-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;

  padding: 18px;
  border-radius: 18px;
  margin-bottom: 22px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radio-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

/* THUMB */
.radio-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.radio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN TEXT */
.radio-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.radio-meta-line {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.radio-meta-line .label {
  font-weight: 600;
  color: var(--signature-color);
  margin-right: 6px;
}

/* ACTIONS */
.radio-actions {
  display: flex;
  align-items: center;
}

.radio-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: var(--signature-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;

  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.radio-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59,130,246,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .radio-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .radio-thumb {
    aspect-ratio: 16 / 9;
  }

  .radio-actions {
    justify-content: flex-start;
  }
}
/* CSS Document */

