/* ═══════════════════════════════════════════════════════════════════════
   Artists Camp — Legal & AI Disclosure page (patterns: legal-*).
   Section-specific styles; values verbatim from
   artists-camp-3.0/src/pages/Legal.tsx.
   Design-system utilities live in assets/css/main.css.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero (legal-hero) ───────────────────────────────────────────────── */

.lg-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 32px) clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lg-hero > * {
  margin: 0;
}

.lg-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}

.lg-hero__lead {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  color: #516078;
  margin: 0;
}

/* ── Notice cards (legal-notices) ────────────────────────────────────── */

.lg-notices {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px) clamp(48px, 7vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lg-card {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lg-card > * {
  margin: 0;
}

/* "NOT LEGAL ADVICE" card (prototype cardBg #FFF1CC). */
.lg-card--cream {
  background: #fff1cc;
}

.lg-card__icon {
  align-self: flex-start;
}

.lg-card__icon,
.lg-card__icon img {
  width: 28px;
  height: 28px;
}

.lg-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

.lg-card__label--green { color: #0b7d58; }
.lg-card__label--red   { color: #d7374f; }
.lg-card__label--teal  { color: #00789e; }
.lg-card__label--amber { color: #9a6200; }

.lg-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: #243047;
  margin: 0;
  text-wrap: pretty;
}

/* ── Terms / Privacy bands (legal-terms, legal-privacy) ──────────────── */

/* White band with a TOP hairline only (the source sections stack, so
   ac-band--white's bottom hairline would double the rule). */
.lg-band {
  background: #ffffff;
  border-top: 1px solid #e8ecf2;
}

.lg-sub {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(16px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lg-sub > * {
  margin: 0;
}

.lg-sub__title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  margin: 0;
}

.lg-sub__body {
  font-size: 15px;
  line-height: 1.6;
  color: #516078;
  margin: 0;
  max-width: 640px;
}
