/* css/mentions-legales.css */

.mentions-page {
  font-family: 'Poppins', sans-serif;
  color: #282828;
  background-color: #F9F9F9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: #282828;
}

/* HERO SECTION */
.mentions-hero {
  background-color: #E8EEFF;
  padding: 80px 20px;
  text-align: left;
}

.mentions-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mentions-hero__inner h1 {
  font-size: 42px;
  font-weight: 700;
  color: #282828;
  margin: 0;
}

/* CONTENT SECTION */
.mentions-content {
  padding: 60px 20px;
  background-color: #fff;
}

.mentions-content__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mentions-content__inner p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.mentions-date {
  color: #6b7280 !important;
  margin-bottom: 40px !important;
}

.mentions-list {
  padding-left: 20px;
  margin-bottom: 30px;
  list-style: none;
}

.mentions-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 8px;
  position: relative;
}

.mentions-list li::before {
  content: "•";
  color: #4738DE;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: -15px;
}

.mentions-content__inner a {
  color: #4738DE;
  text-decoration: underline;
}

.mentions-content__inner h2 {
  font-size: 24px;
  font-weight: 800;
  color: #282828;
  margin: 42px 0 18px;
}

.legal-cookie-panel {
  margin: 36px 0;
  text-align: center;
}

.legal-cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #4738DE;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.legal-cookie-button:hover {
  background: #3527c8;
}

.legal-cookie-grid {
  margin-top: 34px;
}

/* GRID */
.mentions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.mentions-grid__col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 15px;
}

.mentions-grid__col p {
  font-size: 14px;
  line-height: 1.6;
}

.mentions-grid__col .mentions-list li {
  font-size: 14px;
  line-height: 1.6;
}

/* RECLAMATION BOX */
.mentions-reclamation {
  background-color: #E8EEFF;
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
}

.mentions-reclamation h4 {
  font-size: 18px;
  font-weight: 700;
  color: #282828;
  text-align: center;
  margin-bottom: 20px;
}

.mentions-reclamation p {
  font-size: 14px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.mentions-reclamation p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mentions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mentions-grid {
    grid-template-columns: 1fr;
  }
}
