/* Crew / producer page only */

.nav {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-links {
  justify-content: flex-start;
  gap: 1.25rem;
}

.page-intro {
  margin-bottom: 3rem;
}

.producer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-block: 2.5rem;
  border-top: 1px solid #333;
}

.producer:last-of-type {
  border-bottom: 1px solid #333;
}

.producer--reverse {
  flex-direction: row-reverse;
}

.producer-figure,
.producer-content {
  flex: 1 1 0;
}

.producer-figure img {
  display: block;
  max-width: 480px;
  max-height: 480px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.producer-content {
  display: flex;
  flex-direction: column;
}

.producer-header {
  margin-bottom: 1rem;
}

.producer-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--accent);
}

.producer-tagline {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: #f0f0f0;
}

.producer-divider {
  border: 0;
  border-top: 2px solid var(--fg);
  max-width: 120px;
  margin: 0;
}

.producer-body {
  flex: 1 1 auto;
  margin-top: 1rem;
}

.producer-description {
  line-height: 1.7;
  margin: 0 0 0.75rem;
  max-width: 780px;
}

.producer-anchor {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: #cccccc;
  max-width: 780px;
}

.producer-footer {
  margin-top: 1rem;
}

.producer-meta {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .nav,
  .producer,
  .producer--reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .producer-figure img {
    max-width: 100%;
  }
}
