/* Trailers page specific styles */

.trailers-hero {
  position: relative;
}

.trailers-hero__layout {
  align-items: center;
  gap: var(--space-8);
}

.trailers-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.trailers-hero__content p {
  max-width: 40rem;
}

.trailers-hero__media {
  position: relative;
}

.trailers-hero__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(64, 224, 255, 0.4);
}

.trailers-hero__badge {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(5, 6, 10, 0.85);
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(64, 224, 255, 0.6);
}

.trailers-hero__meta {
  font-size: var(--font-size-sm);
}

.trailers-section__header {
  margin-bottom: var(--space-4);
}

.trailers-section__layout {
  align-items: flex-start;
  gap: var(--space-6);
}

.trailers-tags {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trailers-list {
  list-style: none;
  padding: 0;
}

.trailers-list li {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.trailers-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-primary) 45%, transparent 60%);
  box-shadow: 0 0 10px rgba(64, 224, 255, 0.8);
}

.trailers-list--compact li {
  margin-bottom: var(--space-1);
}

.trailers-still,
.trailers-infographic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.trailers-still figcaption,
.trailers-infographic figcaption {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.95), rgba(11, 13, 21, 0.98));
}

.trailers-cta-row {
  flex-wrap: wrap;
}

.trailers-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trailers-archive {
  align-items: flex-start;
}

.trailers-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.trailers-timeline {
  list-style: none;
  margin: 0;
  padding-left: var(--space-2);
  border-left: 1px solid rgba(64, 224, 255, 0.4);
}

.trailers-timeline li {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-3);
}

.trailers-timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: var(--shadow-neon-cyan);
}

.trailers-timeline__label {
  display: block;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.trailers-timeline__title {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.trailers-faq {
  display: grid;
  gap: var(--space-4);
}

.trailers-faq__item h3 {
  font-size: var(--font-size-lg);
  text-transform: none;
  letter-spacing: 0.02em;
}

.trailers-faq__item p {
  max-width: 60rem;
}

@media (max-width: 768px) {
  .trailers-hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .trailers-hero__media {
    order: -1;
  }

  .trailers-tags {
    justify-content: flex-start;
  }
}
