/* [project]/src/styles/pages/legal.css [app-client] (css) */
.legal-page {
  --leg-ink: #14182d;
  --leg-navy: #14182d;
  --leg-navy-soft: #14182d0d;
  --leg-mute: #6e6962;
  --leg-texte: #4f4a43;
  position: relative;
  min-height: 100vh;
  background: #f5f4f1;
  font-family: var(--font-sans, inherit);
}

.legal-page:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  pointer-events: none;
  background: radial-gradient(38% 46% at 12% 0, #21488c17, #0000 70%), radial-gradient(34% 42% at 90% 12%, #3b83ba14, #0000 72%);
}

.legal-page__cadre {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.legal-page__fil {
  padding-top: 28px;
}

.legal-page__fil ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--leg-mute);
}

.legal-page__fil li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-page__fil svg {
  width: 13px;
  height: 13px;
  opacity: .45;
}

.legal-page__fil a {
  transition: color .2s;
}

.legal-page__fil a:hover {
  color: var(--leg-navy);
}

.legal-page__fil span[aria-current] {
  font-weight: 600;
  color: var(--leg-ink);
}

.legal-page__hero {
  padding: 40px 0 36px;
}

.legal-page__title {
  margin-top: 22px;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--leg-ink);
}

.legal-page__subtitle {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--leg-mute);
}

.legal-page__meta {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--leg-mute);
}

.legal-page__content {
  display: flex;
  flex-direction: column;
}

.legal-page__section {
  padding: 30px 0 32px;
  border-top: 1px solid #14182d14;
}

.legal-page__section:first-child {
  border-top: none;
  padding-top: 8px;
}

.legal-page__section:last-child {
  padding-bottom: 0;
}

.legal-page__heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--leg-ink);
  margin-bottom: 16px;
}

.legal-page__subheading {
  margin: 22px 0 8px;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -.01em;
  color: var(--leg-ink);
}

.legal-page__subheading--flush {
  margin-top: 0;
  margin-bottom: 0;
}

.legal-page__text {
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--leg-texte);
}

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

.legal-page__text strong {
  font-weight: 650;
  color: var(--leg-ink);
}

.legal-page__text--reduced-margin {
  margin-bottom: 8px;
}

.legal-page__lien, .legal-page__text a, .legal-page__list a {
  color: var(--leg-ink);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #14182d47;
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}

.legal-page__lien:hover, .legal-page__text a:hover, .legal-page__list a:hover {
  text-decoration-color: #14182db3;
}

.legal-page__list {
  margin: 0 0 12px;
  padding-left: 20px;
  list-style: none;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--leg-texte);
}

.legal-page__list li {
  position: relative;
  margin-bottom: 6px;
}

.legal-page__list li:before {
  content: "";
  position: absolute;
  left: -14px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--leg-navy);
  opacity: .55;
}

.legal-page__list--ordered {
  counter-reset: leg;
}

.legal-page__list--ordered li:before {
  content: counter(leg) ".";
  counter-increment: leg;
  left: -20px;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--leg-navy);
}

.legal-page__info-box {
  margin-bottom: 12px;
}

.legal-page__info-box .legal-page__text {
  margin-bottom: 7px;
}

.legal-page__info-box .legal-page__text:last-child {
  margin-bottom: 0;
}

.legal-page__cookie {
  padding: 18px 0;
  border-top: 1px solid #14182d12;
}

.legal-page__cookie:first-of-type {
  border-top: none;
  padding-top: 4px;
}

.legal-page__cookie-tete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.legal-page__puce {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--leg-mute);
  background: #14182d0d;
}

.legal-page__puce--ferme {
  color: #fff;
  background: var(--leg-ink);
}

.legal-page__petit {
  margin-bottom: 4px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--leg-mute);
}

.legal-page__petit strong {
  font-weight: 650;
  color: var(--leg-texte);
}

.legal-page__quote {
  margin-bottom: 12px;
  padding: 18px 22px;
  border-left: 3px solid #14182d59;
  border-radius: 0 14px 14px 0;
  background: var(--leg-navy-soft);
  font-size: 15px;
  line-height: 1.85;
  color: var(--leg-texte);
}

.legal-page__quote p {
  margin-bottom: 8px;
}

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

.legal-page__placeholder {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--leg-navy);
  background: var(--leg-navy-soft);
  box-shadow: inset 0 0 0 1px #bccce6;
}

@media (width <= 767px) {
  .legal-page__cadre {
    padding: 0 24px 72px;
  }

  .legal-page__hero {
    padding: 28px 0 24px;
  }

  .legal-page__section {
    padding: 24px 0 26px;
  }

  .legal-page__heading {
    font-size: 17.5px;
    margin-bottom: 14px;
  }

  .legal-page__subtitle {
    font-size: 16px;
  }

  .legal-page__meta {
    font-size: 13.5px;
  }

  .legal-page__text, .legal-page__list {
    font-size: 15px;
  }

  .legal-page__quote {
    padding: 16px 18px;
    font-size: 14.5px;
  }

  .legal-page__cookie-tete {
    align-items: flex-start;
  }
}

@media print {
  .legal-page:before, .legal-page__fil, .legal-page__meta {
    display: none !important;
  }

  .legal-page {
    background: #fff;
  }

  .legal-page__section {
    padding: 0 0 12px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .legal-page__heading {
    font-size: 16px;
  }

  .legal-page__text, .legal-page__list {
    color: #333;
  }
}


/*# sourceMappingURL=src_styles_pages_legal_d062c1.css.map*/
