/* Terms & Conditions page styles — no inline, responsive, no horizontal scroll */
section { overflow-x: clip; }

/* Title */
.terms-title{
  margin-top: calc(var(--header-h, 64px) + 18px);
  margin-bottom: 12px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

/* Main section background */
.terms{
  position: relative;
  padding: 28px 0 84px;
  background:
    radial-gradient(1000px 360px at 10% -10%, rgba(255,106,40,.10), transparent 60%),
    radial-gradient(900px 320px at 110% -20%, rgba(240,58,23,.08), transparent 60%),
    var(--bg);
}

.terms-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Intro lead */
.terms .lead{
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* Required block */
.terms-required p{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 10px 0;
  line-height: 1.6;
}

/* Extra paragraphs with headings */
.terms-extra h2{
  font-family: "Oswald", sans-serif;
  margin: 16px 0 6px;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
}
.terms-extra p{
  margin: 0 0 10px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.6;
}
.terms-extra p.effective{
  text-align: right;
  font-weight: 800;
  color: var(--accent);
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 760px){
  .terms-title{ margin-top: calc(var(--header-h, 64px) + 12px); }
}
