/*
 * confidentialite.css — PsyRisso Desktop
 * Styles spécifiques à la page Confidentialité (refonte, sans Hero).
 * Pas de mockup validé — structure alignée sur le standard des autres
 * pages (bande unique, cadre), même logique que mentions-legales.css.
 */
:root {
  --font-heading: Georgia, 'Times New Roman', serif;
  --ocre-border: var(--gris-sep);
  --dore-dark: var(--dore);
  --texte-muted: #3a3a3a;
}

.cf-h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--bleu);
  margin: 0 0 1.75rem;
}

.cf-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.75rem 0;
}
.cf-sep-line {
  height: 1px;
  flex: 1;
  background: var(--ocre-border);
}
.cf-sep-diamond {
  width: 6px;
  height: 6px;
  background: var(--dore);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cf-banner {
  background: #F3E9D6;
  border-bottom: 1px solid rgba(204,161,92,0.4);
  border-radius: 6px;
  padding: 10px 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cf-banner-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu);
  white-space: nowrap;
}
.cf-banner-num {
  font-size: 18px;
  color: var(--dore-dark);
  margin-right: 2px;
}

.cf-sec-body {
  font-size: 14px;
  color: var(--texte-muted);
  line-height: 1.7;
}

.cf-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bleu);
  border-radius: 8px;
  font-size: 13px;
  color: var(--dore);
  line-height: 1.6;
}
.cf-notice i {
  color: var(--dore);
  margin-top: 2px;
  flex-shrink: 0;
}
.cf-notice-link {
  color: var(--dore);
  font-weight: 600;
  text-decoration: underline;
}

.cf-link {
  color: var(--bleu);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--dore);
  text-underline-offset: 2px;
}
.cf-link:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .cf-banner { justify-content: flex-start; }
}