/* ===========================
   Mae Adventures - Legal Pages
   =========================== */

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-inner {
  max-width: 760px;
}

.legal-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.legal-inner h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--color-yellow);
  display: inline-block;
}

.legal-inner h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

/* When jumped to via an in-page anchor (e.g. #local-storage), offset the
   target below the 68px sticky nav so the heading isn't hidden under it. */
.legal-inner h2[id],
.legal-inner h3[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.legal-inner p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

.legal-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-inner ul li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-inner a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

.legal-inner a:hover {
  color: var(--color-text);
}

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--color-yellow);
  color: var(--color-text);
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.cookie-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #EEE;
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
  background: #FAFAFA;
}

@media (max-width: 600px) {
  .cookie-table {
    font-size: 0.82rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem;
  }
}

/* About page touches */
.about-lede {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1.5rem 0 1.25rem;
  line-height: 1.45;
}
.about-pullquote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: #ecfbf9;
  border-radius: 0 10px 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
}
