/*
 * Film extras — trailer, awards, screening schedule, IMDb link.
 * Rendered by part/film-extras.php on single film templates.
 */

.film-extras {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-10);
  margin: var(--sf-space-12) 0;
  padding-top: var(--sf-space-8);
  border-top: 1px solid var(--sf-color-border);
}

.film-extras h2 {
  font-family: var(--sf-font-display);
  font-size: var(--sf-text-2xl);
  margin: 0 0 var(--sf-space-4);
}

/* ---------- Trailer ---------- */

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--sf-radius-md);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-extras__trailer-link a {
  color: var(--sf-color-accent);
  font-weight: 600;
}

/* ---------- Awards ---------- */

.awards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
}

.awards-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sf-space-2);
  padding: var(--sf-space-2) 0;
  border-bottom: 1px dashed var(--sf-color-border);
}

.awards-list .award {
  font-family: var(--sf-font-display);
  font-weight: 700;
  color: var(--sf-color-accent);
}

.awards-list .festival { color: var(--sf-color-text); }
.awards-list .year { color: var(--sf-color-text-muted); font-size: var(--sf-text-sm); }

/* ---------- Schedule ---------- */

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
}

.schedule-list li {
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  gap: var(--sf-space-3);
  align-items: baseline;
  padding: var(--sf-space-3);
  background: var(--sf-color-bg-muted);
  border-radius: var(--sf-radius-sm);
  font-size: var(--sf-text-sm);
}

.schedule-list .when {
  font-weight: 600;
  font-family: var(--sf-font-display);
}

.schedule-list .when .time {
  display: inline-block;
  margin-left: var(--sf-space-2);
  color: var(--sf-color-accent);
}

.schedule-list .venue { color: var(--sf-color-text); }
.schedule-list .note  { color: var(--sf-color-text-muted); font-style: italic; }

@media (max-width: 640px) {
  .schedule-list li {
    grid-template-columns: 1fr;
    gap: var(--sf-space-1);
  }
}

/* ---------- IMDb link ---------- */

.film-extras__imdb a {
  display: inline-block;
  padding: var(--sf-space-1) var(--sf-space-3);
  background: #f5c518;
  color: #000;
  font-weight: 800;
  font-family: var(--sf-font-body);
  border-radius: var(--sf-radius-sm);
  letter-spacing: 0.04em;
}

/* Visually hidden text for screen readers. */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
