/* Public creator/church profile page (/creator/:sourceId). Reuses
   home.css's .media-grid/.badge/.home-section__* and base.css's
   .surface/.btn primitives for everything but the header panel and
   not-found state below, same "one design system" approach as watch.css. */

.creator-page {
  padding-block: var(--space-6) var(--space-10);
}

.creator-page__back {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.creator-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.creator-header__avatar {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.creator-header__info {
  flex: 1 1 auto;
  min-width: 0;
}

.creator-header__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.creator-header__name {
  margin: 0;
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-2xl));
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

.creator-header__meta {
  margin: var(--space-1) 0 0;
  color: var(--color-text-muted);
}

.creator-header__follow-btn[aria-pressed="true"] {
  border-color: var(--gv-purple);
  background: var(--gv-purple-muted);
  color: var(--color-accent);
}

.creator-videos .media-grid {
  margin-top: var(--space-2);
}

.creator-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-8);
}

.creator-not-found__title {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.creator-not-found__text {
  margin: 0;
  color: var(--color-text-muted);
}
