/* === MENTIONS LÉGALES === */

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: white;
}

.mentions-main {
  max-width: 750px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mentions-bloc {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  animation: fadeSlide 0.8s ease-out;
}

.mentions-bloc-title {
  background: linear-gradient(135deg, #007acc, #005fa3);
  color: white;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mentions-bloc-body {
  padding: 1rem 1.5rem;
}

.mentions-row {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  text-align: left;
}

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

.mentions-label {
  width: 130px;
  flex-shrink: 0;
  color: #888;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.1rem;
}

.mentions-value {
  color: #333;
  flex: 1;
}

.mentions-value a {
  color: #007acc;
  text-decoration: none;
  font-weight: 600;
}

.mentions-value a:hover {
  text-decoration: underline;
}

.mentions-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  text-align: left;
  margin: 0.4rem 0;
}

.mentions-text a {
  color: #007acc;
  font-weight: 600;
  text-decoration: none;
}

.mentions-text a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .mentions-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .mentions-label {
    width: auto;
  }
}