/* Shared layout and styling for all legal pages (mobile first) */

.legal-page {
  padding: 4vh 5vw;
}

.legal-wrapper {
  max-width: 420px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: ObviouslyNarrowBlack;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.legal-back-button {
  border: none;
  background: transparent;
  padding: 0;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.legal-back-icon {
  width: 24px;
  height: 24px;
}

.legal-logo {
  width: 110px;
  height: 110px;
}

.legal-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.legal-heading {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.legal-meta {
  color: #000;
  font-size: 12px;
  font-family:
    "Obviously",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.legal-copy {
  color: #000;
  font-size: 8px;
  font-family:
    "Obviously",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 500;
  line-height: 1.75;
  word-wrap: break-word;
}

.legal-copy a {
  color: inherit;
  text-decoration: underline;
}

.legal-copy ul,
.imprint-company-list {
  padding-left: 1.4rem;
  margin: 0.5rem 0;
  list-style-type: disc;
}

.legal-copy ul li,
.imprint-company-list li {
  margin-bottom: 0.15rem;
  padding-left: 0.2rem;
}

.legal-copy ul li::marker,
.imprint-company-list li::marker {
  font-size: 1.1em;
}

/* Imprint page */

.imprint-company-list {
  margin: 0.75rem 0 1.25rem;
}

/* Loyalty Terms page */

.loyalty-section-title {
  display: inline-block;
  font-weight: 600;
}

/* ── Desktop ── */

@media (min-width: 1024px) {
  .legal-page {
    padding: 5vh 3rem;
  }

  .legal-wrapper {
    max-width: 720px;
    gap: 40px;
  }

  .legal-back-icon {
    width: 32px;
    height: 32px;
  }

  .legal-logo {
    width: 140px;
    height: 140px;
  }

  .legal-content {
    gap: 28px;
  }

  .legal-heading {
    font-size: 26px;
  }

  .legal-meta {
    font-size: 14px;
  }

  .legal-copy {
    font-size: 13px;
    line-height: 1.85;
  }

  .imprint-company-list {
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
  }
}
