/* CREDITS PAGE */

.credits-hero {
  padding: 9rem 3rem 3rem;
  border-bottom: 1px solid var(--rule);
  max-width: 900px;
}

.credits-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.credits-intro {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 720px;
}

.credits-section {
  padding: 3rem;
  border-bottom: 1px solid var(--rule);
}

.credits-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--kodak);
  margin-bottom: 2rem;
}

.credits-studio {
  color: var(--muted);
  font-weight: 200;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem 1.5rem;
}

.poster-card {
  display: flex;
  flex-direction: column;
}

.poster-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  background: var(--bg-card);
}

.poster-placeholder {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
}

.poster-placeholder span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.poster-title {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
}

.poster-sub {
  margin-top: 0.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.poster-role {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kodak-red);
  font-weight: 400;
}

@media (max-width: 768px) {
  .credits-hero { padding: 7rem 1.5rem 2.5rem; }
  .credits-section { padding: 2.5rem 1.5rem; }
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
}
