/* ─── Profile Page ───────────────────────────────────────────────────────────── */
.profile-page {
  padding: var(--space-8) 0;
  max-width: 760px;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}
.profile-header__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

.profile-facts-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.profile-fact-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color 0.15s;
}
.profile-fact-row:hover {
  border-color: var(--amber);
}

.profile-fact-row__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.profile-fact-row__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  flex: 1;
}
.profile-fact-row__title:hover {
  color: var(--amber-dark);
}

.profile-fact-row__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.profile-fact-row__date {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ─── Submission form page ───────────────────────────────────────────────────── */
.submission-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

/* ─── FOTD Archive page ──────────────────────────────────────────────────────── */
.archive-page {
  padding: var(--space-8) 0;
}

.archive-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.archive-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
  margin-bottom: var(--space-3);
}

.archive-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.archive-header__subtitle {
  color: var(--ink-muted);
  font-size: 1rem;
  margin-top: var(--space-3);
}

/* ─── Page Hero (generic) ────────────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: var(--space-8) 0;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(253, 250, 243, 0.65);
  margin-top: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
}
