/* ============================================================
   LOTORA — legal document pages
   (terms-of-use, privacy-policy, cookie-policy,
    responsible-gambling-terms)
   ============================================================ */

/* Document header area */
.legal-header {
  min-height: 360px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-8);
  padding: 60px 80px 40px;
}
.legal-header__inner {
  width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--ink);
}
.legal-header__updated {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}
.legal-header__intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Reading column */
.legal-body {
  padding: 60px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-body__copy {
  width: 720px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Sections */
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
}
.legal-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.legal-section p.legal-section__lead { line-height: 1.6; }

.legal-divider {
  height: 1px;
  background: var(--border-8);
}

/* Operator declaration box */
.operator-box {
  background: var(--card-bg);
  border: 1px solid var(--border-15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.operator-box__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}
.operator-box__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.operator-box__lines p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

/* Inline lists (indented paragraph groups) */
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}
.legal-list--loose { gap: 12px; }
.legal-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Contact blocks */
.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
}
.legal-contact p {
  color: var(--ink);
  font-size: 15px;
  line-height: normal;
}

/* Closing note */
.legal-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
