/* ===================== TV SHOW SPOTLIGHT ===================== */
.tvshow-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.tvshow-card {
  background: var(--dark2); border-radius: 4px; overflow: hidden;
  transition: transform 0.3s;
}
.tvshow-card:hover { transform: translateY(-5px); }
.tvshow-card img { width: 100%; height: 220px; object-fit: cover; }
.tvshow-info { padding: 18px; }
.tvshow-info h4 { font-family: var(--font-main); font-size: 18px; margin-bottom: 8px; }
.tvshow-info .episode-meta {
  display: flex; gap: 14px; font-size: 12px; color: #aaa;
  margin-bottom: 12px; flex-wrap: wrap;
}
.tvshow-info .episode-meta span {
  display: flex; align-items: center; gap: 5px;
}
.tvshow-info .episode-meta span i { color: var(--red); }
.tvshow-info p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px; }
.btn-episode {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 9px 22px; border-radius: 2px; font-family: var(--font-main);
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-episode:hover { background: #014a8a; }
