.production-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
  .production-header-grid {
    grid-template-columns: 350px 1fr;
    gap: var(--space-lg);
  }
}

.production-poster-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 4px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.production-poster-wrapper picture {
  display: block;
  width: 100%;
  height: auto;
}

.production-poster {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  transition: filter var(--transition-base);
}

.production-poster-wrapper:hover .production-poster {
  filter: saturate(1.1);
}

.production-hero__credit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.production-title {
  font-size: var(--text-4xl);
  line-height: 0.9;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
}

.production-team-section {
  margin: var(--space-xl) 0;
}

.section-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 4px solid var(--color-accent);
}

.team-grid {
  display: grid;
  grid-template-columns: 2.5rem 1fr 1fr;
  gap: 1px;
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
  width: 100%;
}

.team-grid__label {
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xs) 0;
}

.team-grid__label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  white-space: nowrap;
  max-height: 100%;
}

.team-grid__label--empty {
  background-color: var(--color-surface);
}

.team-grid__role,
.team-grid__name {
  background-color: var(--color-surface);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
}

.team-grid__role {
  border-right: 1px solid var(--color-border);
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.team-grid__name {
  font-family: var(--font-serif);
}

.team-grid__separator {
  grid-column: 1 / -1;
  height: 4px;
  background-color: var(--color-border); /* Thicker line appearance */
}

/* Hover effect for rows */
.team-grid__role:hover,
.team-grid__name:hover {
  background-color: var(--color-accent);
  color: #000000;
}

