/* Start custom CSS for text-editor, class: .elementor-element-139fcf3d *//* =========================================================
   Privacy Policy / Legal Page Styling
   Add class="legal-page" to the wrapper element if you can.
   Works fine site-wide too (scoped to .legal-page when present).
   ========================================================= */

.legal-page,
.entry-content {
  --legal-max: 900px;
  --legal-radius: 18px;
  --legal-border: rgba(0,0,0,.08);
  --legal-muted: rgba(0,0,0,.62);
  --legal-bg: rgba(255,255,255,.78);
  --legal-shadow: 0 10px 30px rgba(0,0,0,.08);
  --legal-shadow-soft: 0 6px 18px rgba(0,0,0,.06);
  --legal-accent: currentColor; /* inherits theme color; override if desired */

  font-size: 16px;
  line-height: 1.7;
}

.legal-page > * ,
.entry-content > * {
  max-width: var(--legal-max);
  margin-left: auto;
  margin-right: auto;
}

/* Page title + effective date line */
.legal-page h1,
.entry-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.legal-page h1 + p,
.entry-content h1 + p,
.legal-page h1 + div,
.entry-content h1 + div {
  color: var(--legal-muted);
  margin-top: 0;
}

/* If "Effective date: ..." is plain text (not wrapped), give it a nice pill when possible */
.legal-page .effective-date,
.entry-content .effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--legal-border);
  border-radius: 999px;
  color: var(--legal-muted);
  background: rgba(255,255,255,.6);
  box-shadow: var(--legal-shadow-soft);
}

/* Card-like layout for the whole legal content (optional)
   Add: <div class="legal-card"> ...content... </div> */
.legal-page .legal-card,
.entry-content .legal-card {
  background: var(--legal-bg);
  border: 1px solid var(--legal-border);
  border-radius: var(--legal-radius);
  padding: clamp(18px, 2.8vw, 34px);
  box-shadow: var(--legal-shadow);
  backdrop-filter: blur(10px);
}

/* Section headings */
.legal-page h2,
.entry-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 34px 0 10px;
  padding-top: 14px;
  border-top: 1px solid var(--legal-border);
}

.legal-page h3,
.entry-content h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin: 22px 0 8px;
}

.legal-page h4,
.entry-content h4 {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 18px 0 8px;
  color: rgba(0,0,0,.72);
}

/* Paragraphs */
.legal-page p,
.entry-content p {
  margin: 0 0 14px;
  color: rgba(0,0,0,.86);
}

/* Emphasis + strong blocks */
.legal-page strong,
.entry-content strong {
  font-weight: 700;
}

.legal-page strong + ul,
.entry-content strong + ul {
  margin-top: 10px;
}

/* Lists */
.legal-page ul,
.entry-content ul {
  margin: 10px 0 18px 0;
  padding-left: 1.1rem;
}

.legal-page li,
.entry-content li {
  margin: 8px 0;
  padding-left: 6px;
}

/* Nice list bullets */
.legal-page ul li::marker,
.entry-content ul li::marker {
  opacity: .6;
}

/* Links */
.legal-page a,
.entry-content a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.22);
  padding-bottom: 1px;
}

.legal-page a:hover,
.entry-content a:hover {
  border-bottom-color: rgba(0,0,0,.55);
}

.legal-page a:focus-visible,
.entry-content a:focus-visible {
  outline: 3px solid rgba(0,0,0,.15);
  outline-offset: 3px;
  border-bottom-color: transparent;
}

/* Make long URLs wrap nicely */
.legal-page a,
.entry-content a,
.legal-page p,
.entry-content p {
  overflow-wrap: anywhere;
}

/* Small “callout” style for blocks you may wrap later:
   <div class="legal-note">...</div> */
.legal-page .legal-note,
.entry-content .legal-note {
  margin: 16px 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--legal-border);
  border-radius: 14px;
  background: rgba(255,255,255,.6);
  box-shadow: var(--legal-shadow-soft);
}

/* Better spacing on the very first section header */
.legal-page h1 + h2,
.entry-content h1 + h2 {
  margin-top: 22px;
}

/* Optional: tighten on mobile */
@media (max-width: 680px) {
  .legal-page,
  .entry-content {
    font-size: 15.5px;
  }

  .legal-page h2,
  .entry-content h2 {
    margin-top: 26px;
  }

  .legal-page ul,
  .entry-content ul {
    padding-left: 1rem;
  }
}

/* Optional: dark mode support if your theme uses prefers-color-scheme */
@media (prefers-color-scheme: dark) {
  .legal-page,
  .entry-content {
    --legal-border: rgba(255,255,255,.14);
    --legal-muted: rgba(255,255,255,.72);
    --legal-bg: rgba(20,20,22,.55);
  }

  .legal-page p,
  .entry-content p {
    color: rgba(255,255,255,.88);
  }

  .legal-page h4,
  .entry-content h4 {
    color: rgba(255,255,255,.78);
  }

  .legal-page a,
  .entry-content a {
    border-bottom-color: rgba(255,255,255,.28);
  }

  .legal-page a:hover,
  .entry-content a:hover {
    border-bottom-color: rgba(255,255,255,.55);
  }

  .legal-page .effective-date,
  .entry-content .effective-date,
  .legal-page .legal-note,
  .entry-content .legal-note {
    background: rgba(255,255,255,.06);
    box-shadow: none;
  }
}/* End custom CSS */