/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-card-page__card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  clip-path: inset(0 round 1rem);
  color: var(--wp--preset--color--black);
  background-color: var(--wp--preset--color--blanc);
}
.s-card-page__card--dark {
  color: var(--wp--preset--color--blanc);
}
.s-card-page__card--dark .s-card-page__nav {
  border-color: color-mix(in srgb, var(--wp--preset--color--blanc) 50%, transparent);
  color: var(--wp--preset--color--blanc);
}
.s-card-page__card--dark .s-card-page__head {
  border-bottom-color: color-mix(in srgb, var(--wp--preset--color--blanc) 50%, transparent);
}
.s-card-page__card--clickable {
  cursor: pointer;
}
.s-card-page__fill {
  position: absolute;
  z-index: 0;
  top: 3.25rem;
  right: 3.25rem;
  width: 250vmax;
  height: 250vmax;
  border-radius: 50%;
  background-color: var(--wp--preset--color--jaune-bac);
  transform: translate(50%, -50%) scale(0);
  transform-origin: center;
  pointer-events: none;
  transition: transform 900ms ease;
}
.s-card-page__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding: 2rem 2rem 2.5rem;
}
.s-card-page--full-height {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.s-card-page--full-height > .l-wrapper,
.s-card-page--full-height > .l-wrapper > .l-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.s-card-page--full-height .s-card-page__card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.s-card-page--full-height .s-card-page__inner {
  flex: 1 1 auto;
  height: 100%;
}
.s-card-page__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 3.25rem;
  padding-right: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 0.5px solid color-mix(in srgb, var(--wp--preset--color--bleu-saphyr) 50%, transparent);
}
.s-card-page__title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.0275rem;
  color: inherit;
}
.s-card-page__title > *:first-child {
  margin-top: 0;
}
.s-card-page__title > *:last-child {
  margin-bottom: 0;
}
.s-card-page__title p,
.s-card-page__title h2,
.s-card-page__title h3,
.s-card-page__title h4 {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.s-card-page__title--placeholder, .s-card-page__text--placeholder {
  opacity: 0.45;
}
.s-card-page__nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  border: 0.5px solid color-mix(in srgb, var(--wp--preset--color--black) 50%, transparent);
  border-radius: 50%;
  background-color: transparent;
  color: var(--wp--preset--color--black);
  transition: background-color 500ms ease, border-color 500ms ease, color 500ms ease;
}
.s-card-page__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 6/4.63;
  transform: rotate(-45deg);
  transition: transform 500ms ease;
  line-height: 0;
}
.s-card-page__nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.s-card-page__nav-icon svg path {
  fill: currentColor;
}
.s-card-page__text {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: inherit;
}
.s-card-page__text > *:first-child {
  margin-top: 0;
}
.s-card-page__text > *:last-child {
  margin-bottom: 0;
}
.s-card-page__text p,
.s-card-page__text ul,
.s-card-page__text ol {
  margin: 0 0 0.5rem;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.s-card-page__text p:last-child,
.s-card-page__text ul:last-child,
.s-card-page__text ol:last-child {
  margin-bottom: 0;
}
.s-card-page__text a {
  color: inherit;
  text-decoration: underline;
  pointer-events: none;
}
.s-card-page__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .s-card-page__card:hover .s-card-page__fill, .s-card-page__card:focus-within .s-card-page__fill {
    transform: translate(50%, -50%) scale(1);
  }
  .s-card-page__card:hover .s-card-page__nav, .s-card-page__card:focus-within .s-card-page__nav {
    border-color: var(--wp--preset--color--bleu-saphyr);
    background-color: var(--wp--preset--color--bleu-saphyr);
    color: var(--wp--preset--color--blanc);
  }
  .s-card-page__card:hover .s-card-page__nav-icon, .s-card-page__card:focus-within .s-card-page__nav-icon {
    transform: rotate(0deg);
  }
}
.s-card-page__link:focus-visible {
  outline: 2px solid var(--wp--preset--color--bleu-saphyr);
  outline-offset: 0.125rem;
}
@media (prefers-reduced-motion: reduce) {
  .s-card-page__fill, .s-card-page__nav, .s-card-page__nav-icon {
    transition: none;
  }
}
@media screen and (max-width: 991px) {
  .s-card-page__inner {
    gap: 2rem;
    padding: 1.5rem 1.5rem 2rem;
  }
  .s-card-page__head {
    padding-bottom: 2.5rem;
  }
}