/* =====================================================
   LEGAL PAGES — Privacy / Terms / GDPR / Cookies
   ---------------------------------------------------
   Prose layout that reuses the site's tokens and helpers
   (.container, .section, .au-page-title, .au-bullet-list,
   .text-teal, .fade-in). Only the article-specific prose
   styling lives here.
===================================================== */

.legal-hero {
  padding-top: 50px;
}

/* Title sits closer to the "last updated" line than the default
   .au-page-title 80px gap. */
.legal-hero .au-page-title {
  margin-bottom: 18px;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 200, 200, 0.45);
  border-radius: 999px;
  padding: 8px 18px;
}

.legal-updated-wrap {
  text-align: center;
}

/* Reduce the gap between hero and body. */
.legal-section {
  padding-top: 24px;
}

.legal-article {
  max-width: 880px;
  margin: 0 auto;
}

/* Lead paragraph under the title — a touch larger than body. */
.legal-intro {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 40px;
}

.legal-block {
  margin-bottom: 38px;
}

.legal-block:last-of-type {
  margin-bottom: 0;
}

/* Section sub-heading — teal underline accent to echo the
   .footer-underline / .section-heading language. */
.legal-block h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--teal);
  margin: 0 0 8px;
}

.legal-block h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
}

.legal-block p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 16px 0 0;
}

.legal-block p + .au-bullet-list,
.legal-block h2 + .au-bullet-list {
  margin-top: 16px;
}

/* Contact callout — bordered card matching .au-diff-card-body edges. */
.legal-contact {
  margin-top: 44px;
  padding: 26px 30px;
  border: 3px solid var(--teal);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-contact h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--teal);
  margin: 0;
}

.legal-contact p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.legal-contact__row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.legal-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0, 200, 200, 0.12);
  border: 1px solid rgba(0, 200, 200, 0.45);
  color: var(--teal);
  font-size: 16px;
}

.legal-contact__link {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-contact__link:hover {
  color: var(--teal);
}

.legal-inline-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-inline-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
    .legal-intro,.legal-block p,.legal-contact p,.legal-contact__link{
        font-size:16px;
    }
}
@media (max-width: 600px) {
  .legal-contact {
    padding: 22px 20px;
  }
  
}
