/* =========================================================
   LEGAL / POLICY PAGES (Responsible Gaming, Terms & Conditions)
   Simple white-background article layout. Same fonts and color
   tokens as the rest of the site (Teko for headings, Work Sans
   for body, --teal / --line / --muted etc from radhe-exchange.css).
   No cards, no icons, no images - just spacing and readability.
   Loaded AFTER radhe-exchange.css.
   ========================================================= */

.legal-header{
  background: var(--white);
  padding: 48px 6vw 28px;
  border-bottom: 1px solid var(--line);
}
.legal-header h1{
  font-size: 42px;
  color: var(--teal-deep);
  max-width: 780px;
  margin: 0 auto 10px;
}
.legal-header .legal-updated{
  max-width: 780px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .2px;
}
@media (max-width: 860px){
  .legal-header{ padding: 36px 5vw 24px; }
  .legal-header h1{ font-size: 30px; }
}

.legal-body{
  background: var(--white);
  padding: 40px 6vw 70px;
}
.legal-content{
  max-width: 780px;
  margin: 0 auto;
}
.legal-content > p.legal-intro{
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 18px;
}
.legal-content h2{
  font-size: 25px;
  color: var(--teal-deep);
  margin-top: 42px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-content h2:first-of-type{
  margin-top: 6px;
}
.legal-content p{
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-content ul,
.legal-content ol{
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-content ul{ list-style: disc; }
.legal-content ol{ list-style: decimal; }
.legal-content li{
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 9px;
}
.legal-content a{
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover{
  color: var(--teal-dark);
}
.legal-content strong{
  color: var(--teal-dark);
}

/* Help / support organisation list */
.legal-help-list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.legal-help-list li{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.6;
}
.legal-help-list li:last-child{
  border-bottom: none;
}
.legal-help-list strong{
  display: inline-block;
  min-width: 220px;
  color: var(--teal-deep);
}
@media (max-width: 560px){
  .legal-help-list strong{
    display: block;
    min-width: 0;
    margin-bottom: 2px;
  }
}

.legal-footer-note{
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
