/* =========================================================
   VIDEOS PAGE
   Matches the comic-book aesthetic of the main site
   ========================================================= */

/* ---------- Hero ---------- */
.videos-hero {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.videos-hero-shapes { position: absolute; inset: 0; pointer-events: none; }

.videos-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-hard);
  margin-bottom: 28px;
}

.videos-hero-eyebrow .dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.videos-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.videos-hero-lede {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ---------- Video Grid ---------- */
.videos-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---------- Video Card ---------- */
.video-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard-lg);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 3px solid var(--ink);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.06);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(2px 3px 0 rgba(26,26,26,0.3));
}

.video-card:hover .video-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg { width: 100%; height: 100%; }

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.video-info {
  padding: 20px 22px 24px;
}

.video-episode {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.video-desc {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.video-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.video-tag {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Coming Soon ---------- */
.videos-coming-soon {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}

.coming-soon-card {
  text-align: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-hard-lg);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.coming-soon-icon svg { width: 100%; height: 100%; }

.coming-soon-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.coming-soon-card h2 em {
  color: var(--red);
  font-style: italic;
}

.coming-soon-card p {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 28px;
}

.coming-soon-card .btn-primary {
  display: inline-flex;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
  .videos-hero { padding: 120px 0 40px; }
  .coming-soon-card { padding: 40px 24px; }
}
