/* Petits marker de la liste à puce 'Notre Mission' (Également sur la page Location et Forfaits) (Également sur la page Camp de jour) */
.custom-marker-1::marker {
    color: #0090BD;
}

.custom-marker-2::marker {
    color: #E54528;
}

.custom-marker-3::marker {
    color: #98BE1F;
}


/* Dégradé sur les cards de la section 'Notre équipe' */
.card-overlay-white {
  position: relative;
  overflow: hidden;
}

.card-overlay-white::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 10%,
    rgba(255, 255, 255, 0) 30%
  );

  pointer-events: none;
  z-index: 1;
}

/* Dégradé sur les cards de la section 'Conseil d'administration' */
.card-overlay-primary {
  position: relative;
  overflow: hidden;
}

.card-overlay-primary::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-primary) 40%, transparent) 10%,
    transparent 100%
  );

  pointer-events: none;
  z-index: 1;
}

/* Comme le header est sticky, on monte l'ancre pour passer dessous */
[data-anchor] {
  scroll-margin-top: 230px;
}