/* ========================================
   Levanty – Legal Pages (Impressum, Datenschutz)
   ======================================== */

.legal-page {
  padding: 130px 0 100px;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 720px;
}

.legal-page__inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 48px;
}

.legal-page__inner .section-label {
  margin-bottom: 0;
}

/* ---- Sections ---- */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section ul li {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}

@media (max-width: 600px) {
  .legal-page {
    padding: 110px 0 72px;
  }
}
