/* Producers index */
.sf-producers-page__head {
  font: 800 2.6rem/1.05 var(--font-display);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.sf-lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 0 36px;
}

/* Shared producer card grid (re-used from home.css for visual consistency) */
.sf-producers__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.sf-pcard {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.18s ease;
}
.sf-pcard:hover {
  border-color: var(--accent);
}
.sf-pcard__link {
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
}
.sf-pcard picture,
.sf-pcard picture img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}
.sf-pcard__body {
  min-width: 0;
}
.sf-pcard__name {
  margin: 0 0 6px;
  font: 700 1.1rem/1.1 var(--font-display);
}
.sf-pcard__blurb {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.sf-pcard__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Per-producer page */
.sf-producer {
  display: grid;
  gap: 32px;
  max-width: 760px;
}
.sf-producer__head {
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sf-producer__icon img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}
.sf-producer__heading {
  min-width: 0;
}
@media (max-width: 480px) {
  .sf-producer__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .sf-producer__icon img {
    width: 96px;
    height: 96px;
  }
}
.sf-producer__name {
  font: 800 2.6rem/1.05 var(--font-display);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.sf-producer__role {
  margin: 0 0 8px;
}
.sf-producer__genres {
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}
.sf-producer h2 {
  font: 700 1.1rem/1.1 var(--font-display);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.sf-producer p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}
.sf-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sf-tags .sf-tag {
  background: var(--surface-2);
}
.sf-tags .sf-tag a {
  color: inherit;
  text-decoration: none;
}
