@charset "UTF-8";
/* ==========================================================================
   Variables.scss
   ========================================================================= */
/* ==========================================================================
   Reset.scss
   ========================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Suppression des styles par défaut des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Nettoyage typographique de base */
body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

.site {
  overflow: clip;
}

@media (height >= 50rem) {
  .site-main {
    min-height: 50vh;
  }
}
/* Suppression des styles des listes */
ul, ol {
  list-style: none;
}

/* Liens sans style par défaut */
a {
  color: inherit;
  text-decoration: none;
}

/* Images réactives */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulaires accessibles et neutres */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

textarea {
  resize: vertical;
}

/* Tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Supprime les animations pour les utilisateurs préférant les interfaces sans effet */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.d-flex, .is-layout-flex {
  display: flex;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.flex-column {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.w-100 {
  width: 100%;
}

.m-xs {
  margin-block: clamp(0.5rem, 1vw, 1rem);
}

.p-xs {
  padding-block: clamp(0.5rem, 1vw, 1rem);
}

.mt-xs {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mb-xs {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ms-xs {
  margin-left: clamp(0.5rem, 1vw, 1rem);
}

.me-xs {
  margin-right: clamp(0.5rem, 1vw, 1rem);
}

.pt-xs {
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.pb-xs {
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ps-xs {
  padding-left: clamp(0.5rem, 1vw, 1rem);
}

.pe-xs {
  padding-right: clamp(0.5rem, 1vw, 1rem);
}

.m-sm {
  margin-block: clamp(1rem, 2vw, 2rem);
}

.p-sm {
  padding-block: clamp(1rem, 2vw, 2rem);
}

.mt-sm {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.mb-sm {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.ms-sm {
  margin-left: clamp(1rem, 2vw, 2rem);
}

.me-sm {
  margin-right: clamp(1rem, 2vw, 2rem);
}

.pt-sm {
  padding-top: clamp(1rem, 2vw, 2rem);
}

.pb-sm {
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.ps-sm {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.pe-sm {
  padding-right: clamp(1rem, 2vw, 2rem);
}

.m-md {
  margin-block: clamp(2rem, 4vw, 4rem);
}

.p-md {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.mt-md {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.mb-md {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.ms-md {
  margin-left: clamp(2rem, 4vw, 4rem);
}

.me-md {
  margin-right: clamp(2rem, 4vw, 4rem);
}

.pt-md {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.pb-md {
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.ps-md {
  padding-left: clamp(2rem, 4vw, 4rem);
}

.pe-md {
  padding-right: clamp(2rem, 4vw, 4rem);
}

.m-lg {
  margin-block: clamp(3rem, 6vw, 6rem);
}

.p-lg {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.mt-lg {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.mb-lg {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ms-lg {
  margin-left: clamp(3rem, 6vw, 6rem);
}

.me-lg {
  margin-right: clamp(3rem, 6vw, 6rem);
}

.pt-lg {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.pb-lg {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.ps-lg {
  padding-left: clamp(3rem, 6vw, 6rem);
}

.pe-lg {
  padding-right: clamp(3rem, 6vw, 6rem);
}

.has-primary-color {
  color: #000 !important;
}

.has-primary-background-color {
  background-color: #000 !important;
}

.has-secondary-color {
  color: #f9cb11 !important;
}

.has-secondary-background-color {
  background-color: #f9cb11 !important;
}

.has-red-color {
  color: #ff0000 !important;
}

.has-red-background-color {
  background-color: #ff0000 !important;
}

.has-green-color {
  color: #3aaa35 !important;
}

.has-green-background-color {
  background-color: #3aaa35 !important;
}

.has-black-color {
  color: #0f0f0f !important;
}

.has-black-background-color {
  background-color: #0f0f0f !important;
}

.has-lightgrey-color {
  color: #f2f2f2 !important;
}

.has-lightgrey-background-color {
  background-color: #f2f2f2 !important;
}

.has-white-color {
  color: #fff !important;
}

.has-white-background-color {
  background-color: #fff !important;
}

@media (width <= 75rem) {
  .desktop {
    display: none !important;
  }
}

@media (width > 75rem) {
  .mobile {
    display: none !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* ==========================================================================
   Typography.scss - Hiérarchie typographique de base
   ========================================================================= */
@font-face {
  font-family: "Google Sans";
  src: url("../fonts/google-sans.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}
body {
  font-family: "Google Sans", sans-serif;
  font-size: 100%;
  color: oklch(0% 0 0deg);
  background-color: #fff;
}

h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: clamp(1.65rem, 1.436rem + 0.571vw, 1.95rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

h1, h2, h3 {
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-family: "Google Sans", sans-serif;
}

p {
  margin-bottom: 1em;
}

.has-small-font-size {
  font-size: clamp(0.75rem, 0.643rem + 0.286vw, 0.9rem) !important;
}

.has-medium-font-size {
  font-size: clamp(1.1rem, 0.993rem + 0.286vw, 1.25rem) !important;
}

.has-large-font-size {
  font-size: clamp(2rem, 0.75rem + 3.333vw, 3.75rem) !important;
}

strong,
.strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.text-balance {
  text-wrap: balance;
}

blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

code, pre {
  font-family: monospace;
  background: #f8f8f8;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

pre {
  overflow-x: auto;
  padding: 1em;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

/* ==========================================================================
   Accessibility.scss - Helpers pour l'accessibilité
   ========================================================================= */
/* Cache visuellement tout en gardant l'élément accessible aux lecteurs d'écran */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Liens "aller au contenu" */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}
.skip-link:focus, .skip-link:active {
  position: static;
  width: fit-content;
  height: auto;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: oklch(0% 0 0deg);
  color: #fff;
  text-decoration: none;
}

/* Indication de focus visible */
:focus-visible {
  outline: 2px dotted oklch(0% 0 0deg);
  outline-offset: 2px;
}

/* Pour les navigateurs ne supportant pas :focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Container.scss - Conteneur de base responsive
   ========================================================================= */
.content-grid {
  display: grid;
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [content-start] min(100% - 2rem, 71.25rem) [content-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid > * {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
.content-grid.grid-breakout {
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [breakout-start] minmax(0, 1.875rem) [content-start] min(100% - 2rem, 71.25rem) [content-end] minmax(0, 1.875rem) [breakout-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid.grid-breakout > .breakout {
  grid-column: breakout;
}

.full-width > * {
  grid-column: content;
}

.wrapper {
  display: grid;
  gap: 1.5rem;
}

.wrapper-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.grid-full-width {
  grid-column: 1/-1;
}

#topbar {
  height: 3rem;
  background-color: oklch(85.753% 0.17314 91.946deg);
}
#topbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#topbar p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
  margin-bottom: 0;
  padding-left: 8rem;
}
@media (width <= 31.25rem) {
  #topbar p {
    padding-left: 7rem;
    font-size: 10px;
    line-height: 1.2;
  }
}
#topbar #social {
  display: flex;
  align-items: center;
}
@media (width <= 31.25rem) {
  #topbar #social img {
    width: 4rem;
  }
}

header .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}
header #logo {
  position: relative;
}
header #logo img {
  width: 9rem;
  height: 100%;
  position: relative;
  top: -1.6rem;
  left: 0;
  transition: all 0.35s ease;
}
@media (width < 31.25rem) {
  header #lang {
    margin-left: 0.75rem;
  }
}
@media (width >= 62rem) {
  header #lang {
    margin-left: 2rem;
  }
}
header #lang ul {
  display: flex;
  align-items: center;
}
header #lang ul li {
  background-color: oklch(100% 0 0deg);
  border: 2px solid black;
  border-radius: 25px;
  corner-shape: squircle;
  padding-inline: 0.75rem;
  transition: all 0.35s ease;
  cursor: pointer;
}
header #lang ul li a {
  color: black;
  font-weight: 700;
  transition: color 0.35s ease;
}
header #lang ul li:hover, header #lang ul li.is-active {
  background-color: black;
}
header #lang ul li:hover a, header #lang ul li.is-active a {
  color: white;
}
header #lang ul li:not(:last-of-type) {
  margin-right: 0.5rem;
}
header.scrolled #logo img {
  width: 6rem;
  top: 0;
}

.breadcrumb li {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
}
.breadcrumb li.active span {
  font-family: "Google Sans", sans-serif;
}
.breadcrumb li:not(:first-of-type) {
  padding-left: 0.25rem;
}
.breadcrumb li a {
  font-weight: bold;
}
.breadcrumb li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero.hero-photo {
  background-size: cover !important;
  background-position: center !important;
  height: 20rem;
}
.hero__title {
  display: grid;
  place-content: center;
  height: 100%;
}
.hero__title h1 {
  font-size: clamp(2.5rem, 2.143rem + 0.952vw, 3rem);
  font-weight: bold;
  color: oklch(100% 0 0deg);
}

.site-footer {
  margin-top: 4rem;
  position: relative;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
.home .site-footer {
  margin-top: 0;
}
.site-footer h2 {
  color: oklch(100% 0 0deg);
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  font-family: "Google Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.site-footer p,
.site-footer a {
  color: oklch(100% 0 0deg);
}
.site-footer .site-info {
  display: flex;
}
@media (width <= 62rem) {
  .site-footer .site-info {
    flex-direction: column;
  }
}
.site-footer .site-info__logo {
  inline-size: fit-content;
  padding: 2rem 0.5rem;
  border-radius: 10px;
  corner-shape: squircle;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  width: 10rem;
}
.site-footer .site-info h2 {
  display: block;
}
.site-footer .site-info p {
  font-size: clamp(0.85rem, 0.743rem + 0.286vw, 0.95rem);
  display: flex;
  align-items: flex-start;
}
.site-footer .site-info p img {
  margin-right: 0.5rem;
}
.site-footer .site-info a {
  text-decoration: underline;
}
.site-footer .site-info a:hover {
  text-decoration: none;
}
@media (width <= 48rem) {
  .site-footer #social {
    justify-content: center;
  }
}
@media (width >= 48rem) {
  .site-footer #social {
    flex-direction: column;
  }
}
.site-footer #copyright {
  margin-top: 2rem;
}
.site-footer #copyright ul {
  display: flex;
  justify-content: center;
  border-top: 0.5px solid white;
  padding-top: 1.5rem;
}
.site-footer #copyright li {
  font-size: clamp(0.85rem, 0.743rem + 0.286vw, 0.95rem);
}
.site-footer #copyright li a {
  color: oklch(100% 0 0deg);
}
.site-footer #copyright li a:hover {
  text-decoration: underline;
}
.site-footer #copyright li:not(:last-of-type) {
  margin-right: 0.5rem;
}
@media (width >= 48rem) {
  .site-footer #copyright li:not(:last-of-type)::after {
    content: "|";
    color: oklch(100% 0 0deg);
    padding-left: 0.5rem;
    display: inline-block;
  }
}
@media (width <= 48rem) {
  .site-footer #copyright ul {
    flex-direction: column;
    text-align: center;
  }
}

.btn {
  font-size: clamp(1.45rem, 1.236rem + 0.571vw, 1.75rem);
  border-radius: 25px;
  corner-shape: squircle;
  border: 2px solid;
  padding: 0.5rem 1.5rem;
  width: fit-content;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  white-space: nowrap;
  font-weight: 600;
}
.btn.btn-outline {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(85.753% 0.17314 91.946deg);
  color: oklch(85.753% 0.17314 91.946deg);
  position: relative;
  overflow: hidden;
}
.btn.btn-outline::before {
  content: "";
  position: absolute;
  background-color: oklch(85.753% 0.17314 91.946deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.btn.btn-outline:hover {
  color: oklch(0% 0 0deg);
}
.btn.btn-outline:hover::before {
  transform: translateY(-100%);
}
.btn.btn-outline.btn-black {
  border-color: oklch(0% 0 0deg);
  color: oklch(0% 0 0deg);
}
.btn.btn-outline.btn-black::before {
  background-color: oklch(0% 0 0deg);
}
.btn.btn-outline.btn-black:hover {
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white {
  border-color: oklch(100% 0 0deg);
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white::before {
  background-color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white:hover {
  color: oklch(0% 0 0deg);
}
.btn.btn-full {
  border-color: oklch(85.753% 0.17314 91.946deg);
  color: oklch(0% 0 0deg);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn.btn-full::before {
  content: "";
  background-color: oklch(85.753% 0.17314 91.946deg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.btn.btn-full::after {
  content: "";
  position: absolute;
  background-color: oklch(100% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.btn.btn-full:hover {
  color: oklch(0% 0 0deg);
}
.btn.btn-full:hover::after {
  transform: translateY(-100%);
}
.btn.btn-picto {
  display: flex;
  align-items: center;
}
.btn.btn-picto img {
  margin-right: 0.5rem;
}

.wp-block-buttons {
  margin-block: 2rem;
  gap: 1rem;
}
.wp-block-buttons .wp-block-button__link {
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid;
  padding: 0.25rem 1.5rem;
  font-weight: 700;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  white-space: nowrap;
  border-color: oklch(0% 0 0deg);
  color: oklch(100% 0 0deg);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.wp-block-buttons .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-color: oklch(0% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.wp-block-buttons .wp-block-button__link::after {
  content: "";
  position: absolute;
  background-color: oklch(100% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.wp-block-buttons .wp-block-button__link:hover {
  color: oklch(0% 0 0deg);
}
.wp-block-buttons .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(0% 0 0deg);
  color: oklch(0% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::before {
  display: none;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: oklch(0% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: oklch(100% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}

.top-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  border: 0;
  padding: 0;
  margin: 0;
  background: oklch(85.753% 0.17314 91.946deg);
  padding: 1rem;
  border-radius: 10px;
  transform: translateY(0);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 2;
}
.top-button img {
  transform: rotate(180deg);
}
.top-button.visible {
  opacity: 1;
}
.top-button:hover, .top-button:focus-visible, .top-button:focus-within, .top-button:active {
  transform: translateY(-10px);
}
.top-button span {
  visibility: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1050;
  transform: translateY(0);
  background: oklch(100% 0 0deg);
  transition: transform 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}
header.scrolled {
  box-shadow: 0 0 10px oklch(96% 0 0deg);
}
.admin-bar header {
  transform: translateY(0);
}
header .site-header .nav-toggler {
  display: flex;
}
header .site-header .nav-toggler button {
  background-color: oklch(85.753% 0.17314 91.946deg);
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  corner-shape: squircle;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .site-header .nav-toggler button svg {
  width: 2.85rem;
  height: 2.85rem;
}
@media (width >= 75rem) {
  header .site-header .nav-toggler {
    display: none;
  }
}
@media (width >= 75rem) {
  header .site-header nav ul {
    display: flex;
  }
  header .site-header nav ul li {
    margin-right: 1rem;
  }
  header .site-header nav ul li a {
    font-weight: 700;
    position: relative;
  }
  header .site-header nav ul li a::after {
    content: "";
    background-color: oklch(100% 0 0deg);
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    border-radius: 10px;
    transition: all 0.35s ease;
  }
  header .site-header nav ul li a:hover::after {
    background-color: oklch(85.753% 0.17314 91.946deg);
  }
}
@media (width < 75rem) {
  header .site-header nav {
    position: absolute;
    top: 5rem;
    right: 0;
    height: 100vh;
    width: 40%;
    background: oklch(100% 0 0deg);
    overflow: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 15rem;
    z-index: 1000;
  }
  header .site-header nav.is-open {
    transform: translateX(0);
  }
  header .site-header nav ul {
    padding: 2rem 1rem;
  }
  header .site-header nav ul li a {
    font-size: clamp(1.65rem, 1.436rem + 0.571vw, 1.95rem);
    font-weight: bold;
  }
  header .site-header nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 3px;
  }
}
@media (width <= 48rem) {
  header .site-header nav {
    width: 90%;
  }
}
@media (width <= 48rem) {
  header .site-header nav {
    width: 100%;
  }
}

.gform_wrapper {
  background-color: oklch(96% 0 0deg);
  padding: 2rem;
  margin-top: 2rem;
}
.gform_wrapper h2 {
  margin-top: 0 !important;
}
.gform_wrapper input[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.5rem 1.5rem !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(0% 0 0deg) !important;
  color: oklch(0% 0 0deg) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer;
}
.gform_wrapper input[type=submit]:hover {
  color: oklch(100% 0 0deg) !important;
  background-color: oklch(0% 0 0deg) !important;
}
.gform_wrapper fieldset legend,
.gform_wrapper fieldset label {
  font-weight: bold !important;
}
.gform_wrapper h2::after {
  display: none !important;
}
.gform_wrapper h3 {
  color: oklch(0% 0 0deg) !important;
}
.gform_wrapper .gform_next_button,
.gform_wrapper .gf_progressbar .percentbar_blue {
  background-color: oklch(0% 0 0deg) !important;
}
.gform_wrapper .gform_required_legend {
  font-style: italic;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
}

#search-modal {
  position: fixed;
  inset: 0;
  background: oklch(85.753% 0.17314 91.946deg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#search-modal .modal-content {
  max-width: 90%;
  border-radius: 8px;
  position: relative;
}
@media (width >= 62rem) {
  #search-modal .modal-content {
    width: 37.5rem;
  }
}
#search-modal .modal-content > img {
  margin: 0 auto 4rem;
  height: auto;
  width: 15rem;
}
#search-modal .modal-content .search-wrapper {
  position: relative;
  width: 100%;
}
#search-modal .modal-content form {
  background: none !important;
}
#search-modal .modal-content input[type=search] {
  background: #fff;
  font-weight: bold;
  width: 100%;
  padding: 2rem 3rem;
  border-radius: 50px;
}
@media screen and (width <= 31.25rem) {
  #search-modal .modal-content input[type=search] {
    padding: 1.5rem 2rem;
  }
}
#search-modal .modal-content .search-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-modal .modal-content .search-submit img {
  width: 2rem;
  height: 2rem;
}
#search-modal .modal-content #quick-links h2 {
  color: oklch(0% 0 0deg);
  margin-block: 2rem;
  font-size: clamp(1.65rem, 1.436rem + 0.571vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
}
#search-modal .modal-content #quick-links ul li {
  border-bottom: 1px solid oklch(0% 0 0deg);
}
#search-modal .modal-content #quick-links ul li a {
  display: block;
  font-family: "Google Sans", sans-serif;
  color: oklch(0% 0 0deg);
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  padding-block: 1rem;
}
#search-modal .modal-content #quick-links ul li:first-of-type {
  border-top: 1px solid oklch(0% 0 0deg);
}
#search-modal .modal-content #quick-links ul li:hover a:hover {
  text-decoration: underline;
}
#search-modal .modal-close {
  position: absolute;
  top: 4rem;
  right: 3rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg preserveAspectRatio='xMinYMid' xmlns='http://www.w3.org/2000/svg' width='34.121' height='34.121' viewBox='0 0 34.121 34.121'%3E%3Cg transform='translate(-1787.425 -147.439)'%3E%3Cline y1='32' x2='32' transform='translate(1788.485 148.5)' fill='none' stroke='%23000000' stroke-width='3'/%3E%3Cline x1='32' y1='32' transform='translate(1788.485 148.5)' fill='none' stroke='%23000000' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: invert(1);
}
@media screen and (width <= 31.25rem) {
  #search-modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
#search-modal[open], #search-modal.show {
  opacity: 1;
  visibility: visible;
}

.home .hero {
  position: relative;
  overflow: hidden;
  height: 30rem;
}
@media (width <= 48rem) {
  .home .hero {
    height: 16rem;
  }
}
@media (height >= 980px) {
  .home .hero {
    height: 40rem;
  }
}
.home .hero img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
}
@media (width <= 48rem) {
  .home .hero img {
    height: 16rem;
  }
}
@media (height >= 980px) {
  .home .hero img {
    height: 40rem;
  }
}
.home .hero .splide__track {
  position: relative;
}
.home .hero .splide__track::before {
  content: "";
  background-color: black;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home .hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
  z-index: 2;
  margin-bottom: 2rem;
}
@media (width <= 31.25rem) {
  .home .hero__content {
    margin-bottom: 3rem;
  }
}
.home .hero__content h2 {
  font-size: clamp(2.25rem, 2.071rem + 0.476vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  background-color: white;
  border-radius: 25px;
  corner-shape: squircle;
  padding-inline: 0.75rem;
}
@media (width <= 31.25rem) {
  .home .hero__content h2 {
    display: none;
  }
}
.home .hero__content p {
  font-size: clamp(1.45rem, 1.236rem + 0.571vw, 1.75rem);
  font-weight: 700;
  max-width: 600px;
  line-height: 1.2;
}
.home .hero__content h2,
.home .hero__content p {
  opacity: 0;
  transform: translateY(30px);
}
.home .hero .splide__pagination {
  bottom: 2rem;
}
.home .hero .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
}
.home .hero .splide__pagination__page.is-active {
  background: oklch(85.753% 0.17314 91.946deg);
  opacity: 1;
}
.home #intro h2 {
  font-weight: 700;
  margin-bottom: 0;
}
@media (width >= 75rem) {
  .home #content .wrapper {
    grid-template-columns: 60% 40%;
  }
}
.home #content .sidebar__item {
  text-align: center;
  border-radius: 25px;
  corner-shape: squircle;
  margin-bottom: 1rem;
  min-height: 11rem;
  position: relative;
  overflow: hidden;
}
.home #content .sidebar__item h2 {
  font-weight: 700;
}
.home #content .sidebar__item#portraits, .home #content .sidebar__item#support {
  position: relative;
}
.home #content .sidebar__item#portraits::before, .home #content .sidebar__item#support::before {
  content: "";
  background: url("../img/logos/logo-hemen-angelu-simple.png") no-repeat;
  background-size: cover !important;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 1rem;
  transform: rotate(350deg);
}
@media (width >= 48rem) {
  .home #content .sidebar__item#portraits::before, .home #content .sidebar__item#support::before {
    width: 7rem;
    height: 7rem;
  }
}
.home #content .sidebar__item#portraits::before {
  left: 1rem;
}
.home #content .sidebar__item#support::before {
  right: 1rem;
  transform: rotate(40deg);
}
.home #content .sidebar__item.simple {
  padding: 1rem;
}
.home #content .sidebar__item.simple h2 img {
  margin-right: 0.5rem;
}
.home #content .sidebar__item.bg {
  background-size: cover !important;
  padding: 2rem;
  display: grid;
  place-content: center;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.home #content .sidebar__item.bg h2 {
  font-size: clamp(1.45rem, 1.236rem + 0.571vw, 1.75rem);
  background: oklch(100% 0 0deg);
  border-radius: 25px;
  padding-inline: 0.5rem;
}
.home #content .sidebar__item.no-bg {
  min-height: 8rem;
}
.home #content .sidebar__item.border {
  border: 2px solid;
  padding: 1rem;
}
.home #content .sidebar__item.border p {
  font-weight: bold;
}
.home #content .sidebar__item.border p:last-of-type {
  margin-bottom: 0;
}
.home #content .sidebar__item:hover.bg {
  transform: scale(1.02);
}

.editor h1 {
  margin-bottom: 2rem;
  line-height: 1.2;
}
.editor h2 {
  font-family: "Google Sans", sans-serif;
  color: oklch(0% 0 0deg);
  font-size: 1.85rem;
  position: relative;
}
.editor h3 {
  font-family: "Google Sans", sans-serif;
  margin-bottom: 1rem;
}
.editor h4 {
  background-color: oklch(96% 0 0deg);
  padding: 0.5rem 0.35rem;
  font-family: "Google Sans", sans-serif;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  display: flex;
  align-items: flex-start;
  margin: 2rem 0 1rem 0;
  width: fit-content;
}
.editor h4::before {
  content: "";
  background: url("../img/pictos/puce.svg") no-repeat;
  background-size: cover !important;
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  margin-top: 0.1rem;
}
.editor h1 + h2,
.editor h2 + h3 {
  margin-top: 3rem;
}
.editor h2 + p {
  margin-top: 1.5rem;
}
.editor p + h2,
.editor p + h3,
.editor figure + h2,
.editor figure + h3,
.editor figure + p,
.editor figure + figure,
.editor ul + h2,
.editor ul + h3,
.editor h2 + ul,
.editor h2 + ol,
.editor .wp-block-spacer + h2,
.editor p + figure {
  margin-top: 2rem;
}
.editor a {
  font-family: "Google Sans", sans-serif;
  text-decoration: underline;
}
.editor a:hover {
  text-decoration: none;
}
.editor .wp-block-list {
  margin-bottom: 2rem;
}
.editor ul {
  list-style: disc;
  padding-left: 2rem;
}
.editor ul li {
  margin-bottom: 1rem;
}
.editor ul li::marker {
  color: oklch(85.753% 0.17314 91.946deg);
}
.editor ol {
  list-style: auto;
  padding-left: 1rem;
}
.editor figure img {
  border-radius: 25px;
  corner-shape: squircle;
}
.editor figcaption {
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}
.editor > img {
  border-radius: 25px;
  corner-shape: squircle;
  margin-bottom: 2rem;
}
.editor .has-background {
  padding: 1rem;
  margin-block: 2rem;
}
.editor .has-background p:last-of-type {
  margin-bottom: 0;
}
.editor .wp-block-media-text {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.editor .wp-block-media-text__content h2:first-of-type {
  margin-top: 0;
}
.editor .child-pages {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 2rem;
}
.editor .child-pages li {
  list-style-type: none;
  height: 10rem;
  background-color: oklch(96% 0 0deg);
  box-shadow: 0 0 0 oklch(96% 0 0deg);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.editor .child-pages li a {
  color: oklch(0% 0 0deg);
  font-weight: bold;
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  text-decoration: none;
  text-align: center;
  text-wrap: balance;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transform: scale(1);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.editor .child-pages li:hover {
  box-shadow: 0 0 5px oklch(72% 0 0deg);
}
.editor .child-pages li:hover a {
  transform: scale(0.97);
}

.single-post .entry-date {
  font-style: italic;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
}
@media (width >= 62rem) {
  .single-post .editor .featured-img {
    max-width: 35rem;
  }
}

.gform_wrapper {
  border-radius: 25px;
  corner-shape: squircle;
}

@media (width <= 62rem) {
  .admin-bar aside {
    top: 5rem;
  }
}

.wp-block-gallery {
  flex-wrap: wrap;
}
.wp-block-gallery.columns-2 figure {
  flex: 45%;
}

.emphase {
  margin-top: 2rem;
  background-color: oklch(85.753% 0.17314 91.946deg);
  display: grid;
  place-content: center;
  padding-block: 2rem;
  border-radius: 25px;
  corner-shape: squircle;
}
.emphase h2 {
  text-wrap: balance;
}

.soutiens {
  padding-left: 0 !important;
}
.soutiens__item {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: oklch(96% 0 0deg);
  border-radius: 15px;
  corner-shape: squircle;
}
@media (width >= 48rem) {
  .soutiens__item {
    grid-template-columns: 20% 80%;
  }
}
.soutiens__item--photo {
  width: 100%;
  height: 100%;
}
.soutiens__item--photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (width >= 48rem) {
  .soutiens__item--photo img {
    height: 15rem;
  }
}
@media (width < 48rem) {
  .soutiens__item--photo img {
    max-height: 22rem;
  }
}
.soutiens__item--content h3 {
  color: oklch(0% 0 0deg);
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
}

.liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  gap: 1rem;
  padding-left: 0 !important;
}
.liste__item {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: oklch(96% 0 0deg);
  border-radius: 15px;
  corner-shape: squircle;
}
@media (width >= 48rem) {
  .liste__item:has(.liste__item--photo) {
    grid-template-columns: 30% 70%;
  }
}
.liste__item--photo {
  width: 100%;
  height: 100%;
}
.liste__item--photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (width >= 48rem) {
  .liste__item--photo img {
    height: 12rem;
  }
}
.liste__item--content h3 {
  color: oklch(0% 0 0deg);
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
}
.themes__item {
  background-color: oklch(96% 0 0deg);
  padding: 1rem 3rem;
  margin-bottom: 1rem;
  position: relative;
}
.home .themes__item {
  background-color: oklch(100% 0 0deg);
}
.themes__item p {
  margin-bottom: 0;
}
.themes__item::before {
  content: "";
  background: url("../img/pictos/fleche-jaune.svg");
  background-size: cover !important;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  transition: transform 0.35s ease;
}
.themes__item:hover {
  cursor: pointer;
}
.themes__item:hover::before {
  transform: translateY(-50%) translateX(1.5rem);
}

.themes__item,
.emphase {
  opacity: 0;
  transform: translateY(40px);
}

.infobox {
  border-radius: 25px;
  corner-shape: squircle;
  margin-block: 2rem;
  padding: 1rem;
}
@media (width >= 62rem) {
  .infobox {
    max-width: 70%;
    margin-inline: auto;
    padding: 2rem 4rem;
  }
}
.infobox.has-icon {
  position: relative;
}
.infobox.has-icon::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: -1rem;
  width: 4rem;
  height: 4rem;
  background: url("../../assets/img/pictos/idea.svg") no-repeat;
  background-size: cover !important;
}
.infobox p:last-of-type {
  margin-bottom: 0;
}

.quote {
  position: relative;
  font-style: italic;
}
@media (width <= 48rem) {
  .quote {
    white-space: pre-line;
  }
}
.quote .read-more-btn {
  background: none;
  text-decoration: underline;
  font-weight: 600;
  padding: 0;
}

.wp-block-accordion .wp-block-accordion-heading {
  background: #fafafa;
  padding: 1rem;
  transition: all 0.35s ease;
}
.wp-block-accordion .wp-block-accordion-heading__toggle-icon {
  font-size: 2rem;
}
.wp-block-accordion .wp-block-accordion-heading:hover, .wp-block-accordion .wp-block-accordion-heading:focus-visible {
  background: #eeeeee;
}
.wp-block-accordion .wp-block-accordion-panel {
  padding: 1rem;
}

.archive .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
}
.card.card-news {
  border-radius: 10px;
}
.card__header {
  height: 10rem;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.card__header img {
  border-radius: 10px 10px 0 0;
  max-height: 10rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.card__body h2 {
  order: 2;
  font-family: "Google Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.card__body--extract {
  order: 3;
}
.card__body--date {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
  order: 4;
}
.card:hover .card__header img {
  transform: scale(1);
}

.blog #actualites {
  position: relative;
}
@media (width >= 62rem) {
  .blog #actualites {
    display: flex;
    gap: 2rem;
  }
}
.blog aside {
  background-color: oklch(96% 0 0deg);
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .blog aside {
    max-width: 18rem;
    position: sticky;
    top: 10rem;
    height: fit-content;
    margin-bottom: 0;
  }
}
.blog aside h2 {
  font-size: 1.25rem;
  color: oklch(0% 0 0deg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog aside ul {
  padding-left: 0;
}
.blog aside ul li a {
  text-underline-offset: 2px;
}
.blog aside ul li a span {
  font-size: 0.95rem;
  font-style: italic;
}
.blog aside ul li a:hover {
  text-decoration: underline;
}
.blog aside ul li a.active {
  font-weight: bold;
  text-decoration: underline;
}
.blog .wrapper-cols {
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.search .hero.hero-simple .wrapper p {
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
}
.search .hero.hero-simple .wrapper p::before {
  display: none;
}
.search #results .wrapper {
  display: grid;
  gap: 2rem;
}
.search #results .wrapper .card {
  position: relative;
  border-radius: 10px;
  border: 1px solid oklch(97% 0 0deg);
  background-color: oklch(97% 0 0deg);
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card > * {
  color: oklch(0% 0 0deg);
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  gap: 1rem;
}
.search #results .wrapper .card__header--content {
  flex: 80%;
  display: flex;
  flex-direction: column;
}
@media (width <= 48rem) {
  .search #results .wrapper .card__header--content {
    flex: 70%;
  }
}
.search #results .wrapper .card__header--content h2 {
  order: 2;
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header--thumbnail {
  flex: 5%;
}
@media (width <= 48rem) {
  .search #results .wrapper .card__header--thumbnail {
    flex: 22%;
  }
}
.search #results .wrapper .card__header--thumbnail img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.search #results .wrapper .card__header--post {
  order: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: oklch(100% 0 0deg);
  text-transform: capitalize;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header--post.bg-page {
  background-color: oklch(0% 0 0deg);
}
.search #results .wrapper .card__header--text {
  order: 3;
}
.search #results .wrapper .card__header--text a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.85rem;
}
.search #results .wrapper .card:hover, .search #results .wrapper .card:focus-visible {
  background-color: oklch(100% 0 0deg);
}
.search #results .wrapper .card:hover .card__body a, .search #results .wrapper .card:focus-visible .card__body a {
  text-decoration: none;
}

.pagination ul {
  display: flex;
  gap: 0.25rem;
}
.pagination ul li {
  width: 1.5rem;
  height: 1.5rem;
}
.pagination ul li a,
.pagination ul li span {
  width: 1.5rem;
  height: 1.5rem;
  background-color: oklch(0% 0 0deg);
  color: oklch(100% 0 0deg);
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  font-family: "Google Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(0% 0 0deg);
  cursor: pointer;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
  color: oklch(0% 0 0deg);
  background-color: oklch(100% 0 0deg / 0);
}
.pagination ul li span.current {
  background: none;
  color: oklch(0% 0 0deg);
  border-color: oklch(0% 0 0deg);
  cursor: unset;
}

.page-template-contact h2 {
  font-size: clamp(1.75rem, 1.036rem + 1.905vw, 2.25rem);
}
.page-template-contact aside h3 {
  margin-bottom: 1rem;
}
@media (width >= 62rem) {
  .page-template-contact .editor {
    grid-column: 1/9;
  }
  .page-template-contact aside {
    grid-column: 9/13;
  }
}

/*# sourceMappingURL=style.css.map */
