/* fichier : assets/css/mentions-legales.css */

.mentions-legales__hero {
  background: #1c1c1c;
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(238, 121, 0, 0.2);
  text-align: center;
}
.mentions-legales__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f9f9f9;
  margin: 0 0 12px;
}
.mentions-legales__subtitle {
  color: #EE7900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  font-weight: 500;
}
.mentions-legales__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.mentions-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.08);
}
.mentions-section:last-child { border-bottom: none; }
.mentions-section__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #EE7900;
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 3px solid #EE7900;
}
.mentions-section__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #f9f9f9;
  margin: 28px 0 10px;
}
.mentions-section p {
  color: rgba(249, 249, 249, 0.8);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.mentions-section a {
  color: #EE7900;
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 121, 0, 0.3);
  transition: border-color 0.2s;
}
.mentions-section a:hover { border-color: #EE7900; }
.mentions-list { list-style: none; padding: 0; margin: 0 0 16px; }
.mentions-list li {
  color: rgba(249, 249, 249, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid rgba(249, 249, 249, 0.05);
}
.mentions-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #EE7900;
}
.mentions-legales__update {
  color: rgba(249, 249, 249, 0.4) !important;
  font-size: 0.85rem !important;
}
@media (max-width: 640px) {
  .mentions-legales__hero { padding: 48px 0 28px; }
  .mentions-legales__content { padding: 40px 16px 60px; }
}