/* schedule.css - v1.5 Programming Schedule section */

.schedule-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.schedule-section-glow {
  position: absolute;
  top: 0; left: -200px;
  width: 700px; height: 500px;
  background: var(--violet);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
  pointer-events: none;
}

.schedule-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.schedule-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Column headers (desktop only) */
.schedule-col-labels {
  display: grid;
  grid-template-columns: 56px 90px 1fr 160px 200px;
  gap: 0;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.col-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Schedule grid */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 56px 90px 1fr 160px 200px;
  gap: 0;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background 0.15s, border-color 0.15s;
  cursor: default;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.schedule-row:hover {
  background: var(--surface);
  border-color: var(--border);
}

.schedule-row--next {
  background: rgba(224, 90, 43, 0.07);
  border-color: rgba(224, 90, 43, 0.3) !important;
}
.schedule-row--next:hover { background: rgba(224, 90, 43, 0.10); }

.sched-ep {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.04em;
}

.sched-status {
  display: flex;
  align-items: center;
}

.sched-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sched-title a {
  color: inherit;
  text-decoration: none;
}
.sched-title a:hover { color: var(--ember); }

.sched-title--next { color: var(--white); font-size: 15px; }

.sched-airtime {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding-right: 16px;
}
.sched-airtime--next { color: var(--ember); font-weight: 700; }

/* Takeaway column: 2-line clamp */
.sched-takeaway {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(240, 235, 227, 0.72);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* YouTube icon - sits beside the title, YouTube red (AC5) */
.sched-yt {
  display: inline-flex;
  align-items: center;
  color: #FF0000;
  transition: color 0.15s;
  text-decoration: none;
  min-height: 44px;
  padding: 0 4px;
  flex-shrink: 0;
}
.sched-yt:hover { color: #CC0000; }
.sched-yt svg { display: block; }

/* "View Full Catalog" link row */
.schedule-catalog-link {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .schedule-col-labels {
    grid-template-columns: 56px 90px 1fr 140px;
  }
  .schedule-row {
    grid-template-columns: 56px 90px 1fr 140px;
  }
  .sched-takeaway { display: none; }
}

@media (max-width: 480px) {
  .schedule-col-labels { display: none; }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .sched-takeaway {
    display: block;
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}
