/* ==========================================================================
   BULLDROP — Terms of use page
   Long-form legal document styling: readable measure, clear hierarchy.
   Depends on shared.css tokens.
   ========================================================================== */

.legal {
  max-width: 90ch;
  margin-inline: auto;
  padding: 34px 36px;
  margin-bottom: 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-surface);
}

.legal__section + .legal__section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal__title {
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--text);
}

.legal__text {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.8;
}
.legal__text + .legal__text { margin-top: 14px; }

.legal__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__text a:hover { color: var(--gold-hover); }

.legal__list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 4px;
}
.legal__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.75;
}
/* Brand-coloured bullet */
.legal__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.legal__list li b { color: var(--text); font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .legal { padding: 24px 22px; }
  .legal__title { font-size: 17px; }
  .legal__text,
  .legal__list li { font-size: 14px; }
  .legal__section + .legal__section { margin-top: 26px; padding-top: 26px; }
}
