/* =========================
   Dermalion Labs — Terms & Conditions page
   ========================= */

.terms{
  padding: clamp(64px, 8vw, 104px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 12% 10%, rgba(179,86,118,.05) 0%, transparent 60%),
    radial-gradient(60% 60% at 88% 90%, rgba(44,109,94,.05) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.terms-header h1{
  font-family: "PrataDL", serif;
  margin: 0 0 .25rem;
}
.terms-lede{ max-width: 70ch; }
.terms-meta{ color: var(--dl-muted); margin-top: 6px; }

.terms-container{
  display: grid;
  gap: 16px;
}

/* Required block */
.terms-required{
  background: #fff;
  border: 1px solid var(--dl-line);
  border-left: 6px solid #cfe8df;
  border-radius: 12px;
  box-shadow: var(--dl-shadow);
  padding: 14px;
}
.terms-required h3{
  margin: 10px 0 6px;
  font-weight: 700;
}
.terms-required p{
  margin: 0 0 10px;
}

/* Body text */
.terms-body{
  background: #fff;
  border: 1px solid var(--dl-line);
  border-radius: 12px;
  box-shadow: var(--dl-shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.terms-body p{
  margin: 0;
  color: var(--dl-ink);
  line-height: 1.6;
  max-width: 75ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.terms-body strong{ color: var(--dl-ink); }

/* Tail note */
.terms-tail{
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed #d7dcdf;
}
.terms a{ color: var(--dl-ink-2); }
.terms a:hover{ color: var(--dl-accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 820px){
  .terms-body p{ max-width: 100%; }
}
