/* featured.css - v1.5 "Now Featured" section
   Latest drop (featured-card) + 2 "Also Worth Watching" (billboard-card) */

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

.featured-bg-glow {
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 400px;
  background: var(--ember);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   FEATURED CARD (left - latest drop)
============================================================ */
.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.featured-card-top {
  background: linear-gradient(135deg, #1A0F35 0%, #0E0B1F 50%, #2D1508 100%);
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.featured-card-glow {
  position: absolute;
  top: -40px; left: -40px;
  width: 350px; height: 250px;
  background: var(--ember);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.featured-card-glow-2 {
  position: absolute;
  bottom: -60px; right: -40px;
  width: 250px; height: 200px;
  background: var(--violet);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}

.featured-ep-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.featured-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.featured-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.featured-card-body {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-takeaway-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-takeaway-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.takeaway-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
  margin-top: 7px;
}

.takeaway-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.featured-card-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   BILLBOARD CARD (right - also worth watching)
============================================================ */
.billboard-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.billboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.billboard-top {
  background: linear-gradient(160deg, #1C1530 0%, #120D25 100%);
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.billboard-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 150px;
  background: var(--violet);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  pointer-events: none;
}

.billboard-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.billboard-ep {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.billboard-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.billboard-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.billboard-airdate {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.billboard-takeaway {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  line-height: 1.55;
  opacity: 0.85;
  padding-left: 14px;
  border-left: 2px solid var(--ember);
}

/* ============================================================
   EMPTY / LOADING STATE
============================================================ */
.featured-loading {
  padding: 40px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .featured-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .featured-card-top { padding: 28px 24px; }
  .featured-card-body { padding: 24px; }
  .featured-card-footer { padding: 16px 24px; flex-wrap: wrap; }
}
