/* ── MENTIONS LÉGALES ── */
main {
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero */
.mentions-hero {
  padding: 6rem 0 3rem;
}

.mentions-title {
  font-family: "Ovo", serif;
  font-weight: 400;
  font-size: 5rem;
  color: #354523;
  line-height: 1;
  margin: 0;
}

/* Divider */
.mentions-divider {
  width: 100%;
  height: 1px;
  background-color: #c8d4a0;
  margin: 2.5rem 0;
}

/* Sections */
.mentions-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.mentions-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #828a6a;
  font-family: "Instrument Sans", sans-serif;
  padding-top: 0.3rem;
  position: sticky;
  top: 5rem;
}

.mentions-section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mentions-section-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #354523;
  margin: 0;
}

.mentions-sublabel {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #828a6a;
  font-family: "Instrument Sans", sans-serif;
}

.mentions-link {
  color: #354523;
  text-underline-offset: 3px;
  text-decoration-color: #c8d4a0;
  transition: text-decoration-color 0.2s;
}

.mentions-link:hover {
  text-decoration-color: #354523;
}

/* Liste propriété intellectuelle */
.mentions-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mentions-liste li {
  font-size: 1rem;
  line-height: 1.8;
  color: #354523;
  padding: 1rem 0;
  border-bottom: 1px solid #e4edbe;
}

.mentions-liste li:first-child {
  padding-top: 0;
}

.mentions-liste li:last-child {
  border-bottom: none;
}

.mentions-note {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #828a6a;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 700px) {
  .mentions-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mentions-section-label {
    position: static;
  }

  .mentions-title {
    font-size: 3.5rem;
  }
}

footer {
  position: initial;
}
