/* =============================================
   FARE — mentions-legales.css
   ============================================= */

/* =====================
   HERO
   ===================== */
.legal-hero {
  padding: 96px 48px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(46, 38, 32, 0.1);
}

.legal-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.legal-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.legal-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.legal-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-mid);
}

/* =====================
   CONTENU
   ===================== */
.legal-content {
  padding: 96px 48px 120px;
}

.legal-content__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* =====================
   SECTIONS
   ===================== */
.legal-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(46, 38, 32, 0.08);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-section__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.legal-section__body p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-mid);
  margin-bottom: 14px;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

.legal-section__body a {
  color: var(--terracotta);
  transition: opacity 150ms ease;
}

.legal-section__body a:hover {
  opacity: 0.75;
}

.legal-section__body strong {
  color: var(--brown-dark);
  font-weight: 500;
}

/* =====================
   LISTE (éditeur, hébergeur)
   ===================== */
.legal-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-mid);
  padding-left: 16px;
  border-left: 2px solid rgba(139, 107, 79, 0.25);
}

/* =====================
   RESPONSIVE — TABLETTE
   ===================== */
@media (max-width: 900px) {

  .legal-hero {
    padding: 72px 32px 64px;
  }

  .legal-content {
    padding: 72px 32px 96px;
  }

}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 600px) {

  .legal-hero {
    padding: 56px 20px 48px;
  }

  .legal-hero__title {
    font-size: 40px;
  }

  .legal-content {
    padding: 56px 20px 80px;
  }

  .legal-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .legal-section__title {
    font-size: 24px;
  }

}
