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

*, *::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;
}

/* 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%;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  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;
}

.d-block {
  display: block;
}

.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-blue-color {
  color: #008799 !important;
}

.has-blue-background-color {
  background-color: #008799 !important;
}

.has-lightblue-color {
  color: #b9f5f7 !important;
}

.has-lightblue-background-color {
  background-color: #b9f5f7 !important;
}

.has-yellow-color {
  color: #fdee00 !important;
}

.has-yellow-background-color {
  background-color: #fdee00 !important;
}

.has-black-color {
  color: #352e30 !important;
}

.has-black-background-color {
  background-color: #352e30 !important;
}

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

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

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

.has-white-background-color {
  background-color: #fff !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: "Poppins Light";
  src: url("../fonts/poppins-300.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Source Sans";
  src: url("../fonts/source-sans-3-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}
body {
  font-family: "Source Sans", sans-serif;
  font-size: 100%;
  color: oklch(31% 0.01 0deg);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.5rem;
}

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: "Poppins Bold", sans-serif;
}

h4 {
  font-family: "Poppins SemiBold", sans-serif;
}

h2.lines {
  position: relative;
  display: flex;
  align-items: center;
}
h2.lines::after {
  content: "";
  flex: 1;
  height: 0.5rem;
  background: url("../img/pictos/line.svg") repeat-x;
  background-position: left center;
  background-size: auto 100%;
  margin-left: 2rem;
}
h2.bothlines {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
h2.bothlines::before, h2.bothlines::after {
  content: "";
  flex: 1;
  height: 0.5rem;
  background: url("../img/pictos/line.svg") repeat-x;
  background-position: center;
  background-size: auto 100%;
}
h2.bothlines::before {
  margin-right: 1rem;
}
h2.bothlines::after {
  margin-left: 1rem;
}

p {
  margin-bottom: 1em;
}

small,
.has-small-font-size {
  font-size: 0.85rem !important;
}

.has-medium-font-size {
  font-size: 1.25rem !important;
}

.has-large-font-size {
  font-size: 1.85rem !important;
}

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

.semibold {
  font-family: "Poppins SemiBold", sans-serif;
}

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

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

em {
  font-style: italic;
}

blockquote {
  font-style: italic;
  color: oklch(57% 0.099255 211.0725deg);
  background: oklch(57% 0.1 211.07deg / 0.05);
  width: fit-content;
  padding: 2rem;
  position: relative;
  border: 0;
  border-radius: 10px;
  margin: 1rem auto 2rem;
}
blockquote p {
  margin-bottom: 0;
}
blockquote::before, blockquote::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: url("../img/pictos/quote.svg") no-repeat;
  background-size: cover !important;
  width: 2rem;
  height: 2rem;
}
blockquote::after {
  top: unset;
  left: unset;
  bottom: -1rem;
  right: -1rem;
  transform: rotate(180deg);
}

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;
}

.external {
  padding-right: 0.5ch;
  cursor: pointer;
}
.external::after {
  content: "";
  display: inline-block;
  background: url("../img/pictos/external.svg") no-repeat;
  background-size: cover !important;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.5ch;
}

/* ==========================================================================
   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(31% 0.01 0deg);
  color: #fff;
  text-decoration: none;
}

/* Indication de focus visible */
:focus-visible {
  outline: 2px dotted oklch(31% 0.01 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;
}
.content-grid.grid-breakout-large {
  grid-template-columns: [full-width-start] minmax(1rem, 1fr) [largebreakout-start] minmax(0, 3.4375rem) [content-start] min(100% - 2rem, 71.25rem) [content-end] minmax(0, 3.4375rem) [largebreakout-end] minmax(1rem, 1fr) [full-width-end];
}
.content-grid.grid-breakout-large > .breakout {
  grid-column: largebreakout;
}

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

.align-right {
  display: grid;
  justify-self: end;
}

.wrapper-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 1.5rem;
}
@media (width >= 48rem) {
  .wrapper-cols {
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
  }
}

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

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

.site-header {
  left: 0;
  right: 0;
  top: -140px;
  padding-block: 0.5rem;
  transition: all 0.35s ease;
  z-index: 1050;
}
@media screen and (width >= 62rem) {
  .site-header {
    height: 6rem;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.site-header .site-branding h1,
.site-header .site-branding p {
  margin-bottom: 0;
  z-index: 2;
}
.site-header .site-branding svg,
.site-header .site-branding .site-logo {
  width: 15rem;
  height: auto;
  transition: all 0.15s ease;
}
@media (width <= 31.25rem) {
  .site-header .site-branding svg,
  .site-header .site-branding .site-logo {
    width: 9rem;
  }
}
.site-header .site-branding svg .st0 {
  fill: oklch(31% 0.01 0deg);
}
.site-header .site-branding svg .st1 {
  fill: oklch(67.8% 0.1656 29.53deg);
}
.site-header .site-branding svg .st2 {
  fill: #00B2EB;
}
.site-header .site-branding svg .st3 {
  fill: oklch(93% 0.2 104.97deg);
}
@media screen and (width <= 75rem) {
  .site-header .site-branding .st0 {
    fill: white;
  }
}
.site-header .site-branding a:focus svg,
.site-header .site-branding a:focus img, .site-header .site-branding a:focus-visible svg,
.site-header .site-branding a:focus-visible img {
  outline: 2px dotted oklch(31% 0.01 0deg);
  outline-offset: 2px;
}
.site-header .site-branding__localisation {
  margin-left: 1rem;
}
.site-header .site-branding__localisation img {
  width: 3rem;
  height: auto;
  transition: all 0.15s ease;
}
@media screen and (width <= 75rem) {
  .site-header .site-branding__localisation {
    margin-left: 0.5rem;
  }
  .site-header .site-branding__localisation img {
    width: 2rem;
  }
}
.home .site-header .site-branding::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-67%);
  width: 10rem;
  height: 3.125rem;
  background: white;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (width <= 75rem) {
  .home .site-header .site-branding::before {
    display: none;
  }
}
.site-header .site-nav {
  gap: 2rem;
}
@media screen and (width >= 75rem) {
  .site-header .site-nav {
    margin-top: 1rem;
  }
}
.site-header .site-nav #persona {
  position: relative;
  display: inline-block;
}
@media (width <= 75rem) {
  .site-header .site-nav #persona {
    margin-bottom: 2rem;
  }
}
.site-header .site-nav #persona .dropdown-toggle {
  background: oklch(93% 0.06 198.58deg);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
  gap: 0.5em;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
}
@media (width <= 75rem) {
  .site-header .site-nav #persona .dropdown-toggle {
    width: 100%;
    justify-content: center;
    border-radius: 0 0 10px 10px;
  }
}
.site-header .site-nav #persona .chevron {
  transition: transform 0.3s ease;
}
.site-header .site-nav #persona[data-open=true] .chevron {
  transform: rotate(180deg);
}
.site-header .site-nav #persona .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5em;
  padding: 0.5em 0;
  background-color: #b9f5f7;
  border-radius: 5px;
  list-style: none;
  min-width: 9.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.site-header .site-nav #persona .dropdown-menu a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #333;
}
.site-header .site-nav #persona .dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}
@media (width <= 75rem) {
  .site-header .site-nav #persona .dropdown-menu {
    width: 100%;
    text-align: center;
  }
}
.site-header .site-nav #persona[data-open=true] .dropdown-menu {
  display: block;
}
.site-header .site-nav #social a:not(:last-of-type) {
  margin-right: 0.5rem;
}
.site-header .site-nav #social img {
  width: 1.5rem;
  height: auto;
}
@media (width <= 75rem) {
  .site-header .site-nav #social {
    justify-content: center;
  }
}
.site-header #search,
.site-header #search_mobile {
  width: 1.75rem;
  height: 1.75rem;
}
.site-header #search button svg,
.site-header #search_mobile button svg {
  width: 1.75rem;
  height: 1.75rem;
}
.site-header.sticky-active {
  box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
}
@media screen and (width >= 62rem) {
  .site-header.sticky-active {
    height: 4rem;
  }
}
.site-header.sticky-active .site-branding .site-logo,
.site-header.sticky-active .site-branding svg {
  width: 9rem;
}
.site-header.sticky-active .site-branding svg .st0 {
  fill: oklch(31% 0.01 0deg);
}
.site-header.sticky-active .site-branding__localisation img {
  width: 1.75rem;
}
.site-header.sticky-active .site-branding::before {
  display: none;
}
.site-header.sticky-active .site-nav {
  margin-top: 0;
}
.admin-bar .site-header.sticky-active {
  top: 32px;
}
@media (width <= 48.875rem) {
  .admin-bar .site-header.sticky-active {
    top: 46px;
  }
}

.hero {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 0;
}
.home .hero {
  height: calc(100vh - 10rem);
}
@media (width <= 31.25rem) {
  .home .hero {
    height: 80svh;
    height: 80vh;
  }
}
.hero.hero-photo {
  height: 45vh;
}
.hero.hero-photo .breadcrumbs {
  height: 100%;
  position: relative;
}
.hero.hero-photo .breadcrumbs nav {
  position: absolute;
  bottom: 0;
  background: white;
  width: 100%;
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, -1.143rem + 6.429vw, 4rem);
}
.hero.hero-simple {
  border-top: 5px solid oklch(94% 0 0deg);
  padding-block: 1rem;
}
.hero:not(.hero-simple) .breadcrumbs nav::before {
  content: "";
  position: absolute;
  background: url("../img/pictos/virgule-jaune.svg") no-repeat;
  background-size: cover !important;
  right: 2rem;
  top: 1rem;
  height: 3rem;
  width: 3rem;
  z-index: 2;
}
@media screen and (width <= 48rem) {
  .hero:not(.hero-simple) .breadcrumbs nav::before {
    right: -1rem;
    top: -2rem;
  }
}

.wrapper-alert {
  padding-block: 0.5rem;
  position: relative;
}
.wrapper-alert__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper-alert__item p {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0;
}
@media (width >= 75rem) {
  .wrapper-alert__item p {
    font-size: 1.25rem;
    text-align: center;
  }
}
.wrapper-alert__item a {
  font-family: "Poppins Medium", sans-serif;
  text-decoration: underline;
  font-size: 0.85rem;
  margin-left: 1rem;
}
.wrapper-alert__item a:hover {
  text-decoration: none;
}
@media (width <= 20rem) {
  .wrapper-alert__item a {
    font-size: 0.75rem;
  }
}
.wrapper-alert__extrait {
  font-size: 1rem;
  font-style: italic;
}
@media (width <= 75rem) {
  .wrapper-alert__extrait {
    display: none;
  }
}
@media (width <= 31.25rem) {
  .wrapper-alert img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .wrapper-alert p {
    font-size: 0.75rem;
  }
}
.wrapper-alert button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  grid-column: 12;
  font-size: 2rem;
  line-height: 1;
}
@media (width <= 48rem) {
  .wrapper-alert button {
    right: 0;
    width: 2rem;
    height: 2rem;
  }
}
@media (width <= 20rem) {
  .wrapper-alert button {
    font-size: 1.5rem;
    top: 0;
    right: 0;
    transform: none;
  }
}
.wrapper-alert.is-hidden {
  display: none !important;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding-inline-start: 0;
}
.breadcrumbs ol li {
  font-size: 0.85rem;
  margin: 0;
  display: inline-block;
  position: relative;
}
.breadcrumbs ol li a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li::after {
  content: " | ";
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumbs ol li:last-child::after {
  display: none;
}
.breadcrumbs ol li.active {
  font-weight: bold;
}
.breadcrumbs ol li:not(:first-of-type) {
  padding-left: 0.25rem;
}

.site-footer {
  background-color: oklch(94% 0 0deg);
  padding-block: 4rem;
  overflow: hidden;
}
.site-footer .site-info {
  display: grid;
}
@media screen and (width <= 62rem) {
  .site-footer .site-info > * {
    margin-bottom: 2rem;
    margin-inline: auto;
    text-align: center;
  }
  .site-footer .site-info .btn {
    margin-inline: auto;
  }
}
.site-footer .site-info h2 {
  font-size: 1.25rem;
}
.site-footer .site-info .site-info__logo a:focus img, .site-footer .site-info .site-info__logo a:focus-visible img {
  outline: 2px dotted oklch(31% 0.01 0deg);
  outline-offset: 2px;
}
.site-footer .site-info .site-info__logo img {
  width: 100%;
  max-width: 12rem;
  height: auto;
}
.site-footer .site-info .site-info__address p {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.site-footer .site-info .site-info__address p img {
  margin-right: 0.5rem;
}
@media screen and (width <= 62rem) {
  .site-footer .site-info .site-info__address p {
    justify-content: center;
  }
}
@media (width >= 75rem) {
  .site-footer .site-info .site-info__contact > * {
    min-width: 13rem;
  }
}
.site-footer .site-info .site-info__contact--links a {
  font-family: "Poppins Bold", sans-serif;
  display: block;
  font-size: 0.85rem;
}
.site-footer .site-info .site-info__contact--links a:hover {
  text-decoration: underline;
}
.site-footer .site-info .site-info__misc {
  position: relative;
}
.site-footer .site-info .site-info__misc h2 span {
  font-weight: normal;
}
@media screen and (width <= 62rem) {
  .site-footer .site-info .site-info__misc--social > div {
    justify-content: center;
  }
}
.site-footer .site-info .site-info__misc::after {
  content: "";
  background: url("../img/pictos/carte-sud-ouest-france-landes-tarnos.png") no-repeat;
  background-size: cover !important;
  position: absolute;
  bottom: -2rem;
  right: -12rem;
  width: 13rem;
  height: 11rem;
  transform: translate(-50%);
  z-index: 0;
}
@media screen and (width >= 62rem) {
  .site-footer .site-info {
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  .site-footer .site-info .site-info__logo {
    grid-column: 1/4;
  }
  .site-footer .site-info .site-info__address {
    grid-column: 4/7;
  }
  .site-footer .site-info .site-info__contact {
    grid-column: 7/10;
  }
  .site-footer .site-info .site-info__misc {
    grid-column: 10/13;
  }
}
.site-footer .footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer .footer-menu li a {
  font-size: 0.85rem;
  text-decoration: none;
}
.site-footer .footer-menu li a:hover {
  text-decoration: underline;
}
.site-footer .footer-menu li:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  padding-left: 0.5rem;
}
.site-footer .footer-menu li:not(:first-of-type) {
  padding-left: 0.5rem;
}

.btn {
  border-radius: 25px;
  border: 2px solid;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  width: fit-content;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  white-space: nowrap;
}
.btn.btn-outline {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(31% 0.01 0deg);
  color: oklch(31% 0.01 0deg);
}
.btn.btn-outline:hover {
  background-color: oklch(93% 0.2 104.97deg);
  border-color: oklch(93% 0.2 104.97deg);
}
.btn.btn-full {
  background-color: oklch(100% 0 0deg);
  border-color: oklch(100% 0 0deg);
  color: oklch(31% 0.01 0deg);
}
.btn.btn-full:hover {
  background-color: oklch(93% 0.2 104.97deg);
  border-color: oklch(93% 0.2 104.97deg);
}
.btn.btn-full.btn-picto {
  display: flex;
  align-items: center;
}
.btn.btn-full.btn-picto img {
  margin-right: 0.5rem;
}
.btn.btn-newsletter {
  border-radius: 0;
  font-weight: bold;
  letter-spacing: 1px;
  background-color: oklch(100% 0 0deg / 0);
  transition: background-color 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}
.btn.btn-newsletter img {
  margin-right: 0.25rem;
}
.btn.btn-newsletter:hover {
  background-color: oklch(93% 0.06 198.58deg);
}

.wp-block-buttons {
  gap: 1rem;
  margin-block: 2rem;
}
.wp-block-buttons .wp-block-button__link {
  border-radius: 25px !important;
  border: 2px solid oklch(93% 0.2 104.97deg) !important;
  padding: 0.5rem 1.5rem;
  font-weight: 700 !important;
  width: fit-content;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  white-space: nowrap;
  background-color: oklch(93% 0.2 104.97deg);
  border-color: oklch(93% 0.2 104.97deg);
  color: oklch(31% 0.01 0deg) !important;
  text-decoration: none !important;
  cursor: pointer;
}
.wp-block-buttons .wp-block-button__link:hover {
  background-color: oklch(100% 0 0deg) !important;
  border-color: oklch(31% 0.01 0deg) !important;
}
@media (width <= 31.25rem) {
  .wp-block-buttons .wp-block-button__link {
    white-space: break-spaces;
  }
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(31% 0.01 0deg) !important;
  color: oklch(31% 0.01 0deg) !important;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: oklch(93% 0.2 104.97deg) !important;
  border-color: oklch(93% 0.2 104.97deg) !important;
}

.main-navigation {
  position: relative;
  z-index: 1;
}
@media (width <= 75rem) {
  .main-navigation {
    display: flex;
    align-items: center;
  }
}
@media screen and (width >= 75rem) {
  .main-navigation {
    background: #fff;
  }
}
.main-navigation .menu-toggle {
  display: block;
  background: oklch(93% 0.2 104.97deg);
  border-radius: 5px;
  border: none;
  font-size: 1.25rem;
  padding: 0.25rem;
  z-index: 1;
}
.main-navigation .menu-toggle:focus {
  outline: 2px solid black;
}
.main-navigation .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 1000;
}
@media (width <= 75rem) {
  .main-navigation .site-nav {
    width: 100%;
    max-width: 16rem;
  }
}
@media (width <= 31.25rem) {
  .main-navigation .site-nav {
    width: 100%;
    max-width: 100%;
  }
}
.main-navigation .site-nav__mobile {
  position: relative;
}
.main-navigation .site-nav__mobile .nav-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  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: 1rem;
  height: 1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-navigation .site-nav > ul {
  display: block;
}
.main-navigation .site-nav > ul > li > a {
  font-family: "Poppins Bold", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.main-navigation .site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background: oklch(57% 0.099255 211.0725deg);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.main-navigation .site-nav > ul > li > a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-navigation .site-nav > ul > li.current-menu-item a::after, .main-navigation .site-nav > ul > li.current-page-ancestor a::after {
  transform: scaleX(1);
}
@media (width <= 75rem) {
  .main-navigation .site-nav {
    gap: 0;
    padding: 0;
  }
  .main-navigation .site-nav > ul {
    text-align: center;
    background-color: oklch(57% 0.099255 211.0725deg);
    padding: 2rem;
  }
  .main-navigation .site-nav > ul li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .main-navigation .site-nav > ul li a {
    font-size: 1.25rem;
    color: oklch(100% 0 0deg);
  }
}
@media screen and (width >= 48rem) {
  .admin-bar .main-navigation .site-nav {
    top: 32px;
  }
}
@media screen and (width < 48rem) {
  .admin-bar .main-navigation .site-nav {
    top: 46px;
  }
}
.main-navigation.is-open .site-nav {
  transform: translateX(0);
}
@media (width >= 75rem) {
  .main-navigation .menu-toggle {
    display: none;
  }
  .main-navigation .site-nav {
    position: static;
    height: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    width: auto;
    background: transparent;
    box-shadow: none;
  }
  .main-navigation .site-nav > ul {
    display: flex;
    align-items: center;
  }
  .main-navigation .site-nav > ul li:not(:last-of-type) {
    margin-right: clamp(1rem, -4rem + 7.5vw, 2rem);
  }
}

.home #searchform {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8rem;
  z-index: 2;
}
@media screen and (width > 48rem) {
  .home #searchform {
    min-width: 30rem;
  }
}
@media screen and (width <= 48rem) {
  .home #searchform {
    width: 90%;
  }
}
.home #searchform .search-wrapper {
  position: relative;
  width: 100%;
}
.home #searchform .search-field {
  background-color: oklch(100% 0 0deg);
  width: 100%;
  padding: 1.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: oklch(31% 0.01 0deg);
}
.home #searchform .search-field::placeholder {
  opacity: 1;
}
@media screen and (width <= 48rem) {
  .home #searchform .search-field {
    padding: 1.75rem 2.5rem 1.75rem 1.15rem;
    font-size: 0.85rem;
  }
}
@media screen and (width <= 20rem) {
  .home #searchform .search-field {
    font-size: 0.8rem;
  }
}
.home #searchform .search-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.home #searchform .search-submit svg {
  width: 2.5rem;
  height: 2.5rem;
}
.home #searchform .search-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.home #searchform .search-nav li a {
  display: block;
  background-color: oklch(93% 0.06 198.58deg);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  transition: all 0.35s ease;
  cursor: pointer;
  color: oklch(31% 0.01 0deg);
  font-weight: bold;
  text-decoration: none;
}
.home #searchform .search-nav li a:hover, .home #searchform .search-nav li a:focus, .home #searchform .search-nav li a:focus-visible {
  background-color: oklch(93% 0.2 104.97deg);
}

.autocomplete-results {
  position: absolute;
  top: 104%;
  left: 0;
  width: 100%;
  padding-inline: 1rem;
  background: white;
  border-radius: 25px;
  z-index: 999;
  max-height: 18.75rem;
  overflow-y: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.autocomplete-results .autocomplete-item {
  display: flex;
  align-items: center;
  padding: 0.5em;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eee;
}
.autocomplete-results .autocomplete-item:hover, .autocomplete-results .autocomplete-item:focus {
  background-color: #f2f2f2;
  outline: none;
}
.autocomplete-results .autocomplete-item .icon {
  margin-right: 0.5em;
  font-size: 1.2em;
}

.type-agenda .icon {
  color: #1e88e5;
}

.type-publication .icon {
  color: #43a047;
}

.type-projet .icon {
  color: #fbc02d;
}

.type-page .icon {
  color: #ab47bc;
}

.type-post .icon {
  color: #ef5350;
}

.no-results {
  padding: 0.5em;
  color: #666;
}

#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 135, 153, 0.9490196078);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#search-modal .modal-content {
  max-width: 90%;
  width: 37.5rem;
  border-radius: 8px;
  position: relative;
}
#search-modal .modal-content > img {
  margin: 0 auto 4rem;
  width: 15rem;
  height: auto;
}
#search-modal .modal-content .search-wrapper {
  position: relative;
  width: 100%;
}
#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(100% 0 0deg);
  margin-block: 2rem;
}
#search-modal .modal-content #quick-links ul li {
  border-bottom: 1px solid oklch(100% 0 0deg);
}
#search-modal .modal-content #quick-links ul li a {
  display: block;
  font-family: "Source Sans", sans-serif;
  color: white;
  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(100% 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;
}

.gform_wrapper {
  background-color: oklch(94% 0 0deg);
  border-radius: 10px;
  padding: 1rem;
}
@media (width >= 62rem) {
  .gform_wrapper .gform_heading {
    padding-inline: 2rem;
  }
}
.gform_wrapper .gform_heading p.gform_required_legend {
  margin-bottom: 0;
  font-size: 0.85rem;
  font-style: italic;
}
@media (width >= 62rem) {
  .gform_wrapper form {
    padding: 2rem;
  }
}
.gform_wrapper form .gfield--type-choice .gfield_checkbox {
  flex-direction: row !important;
  flex-wrap: wrap;
}
.gform_wrapper form .gfield--type-choice .gfield_checkbox#input_13_36 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}
.gform_wrapper form legend,
.gform_wrapper form label {
  font-size: 1rem !important;
}
.gform_wrapper form textarea {
  min-block-size: 8rem !important;
}
.gform_wrapper form input[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.75rem 1.75rem !important;
  font-weight: 700 !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  background-color: oklch(93% 0.2 104.97deg) !important;
  border-color: oklch(93% 0.2 104.97deg) !important;
  color: oklch(31% 0.01 0deg) !important;
  font-size: 1.15rem !important;
  margin: 1rem auto 0 !important;
}
.gform_wrapper form input[type=submit]:hover, .gform_wrapper form input[type=submit]:focus, .gform_wrapper form input[type=submit]:focus-visible {
  background-color: oklch(100% 0 0deg) !important;
  border-color: oklch(100% 0 0deg) !important;
}

.home #main h2 {
  font-size: clamp(1.85rem, 1.564rem + 0.762vw, 2.25rem);
}
@media screen and (width <= 75rem) {
  .home #main {
    margin-top: -6rem;
  }
}
@media (width <= 75rem) {
  .home:has(#alerte:not(.is-hidden)) #main {
    margin-top: 0;
  }
}

#unclic {
  position: absolute;
  translate: -50%;
  left: 50%;
  width: 100%;
  top: 100%;
}
@media screen and (width >= 62rem) {
  #unclic {
    bottom: -5rem;
    top: unset;
  }
}
#unclic ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
  background-color: oklch(100% 0 0deg);
  padding-top: 0.5rem;
}
#unclic ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
#unclic ul li:not(:last-of-type)::after {
  content: "";
  background-color: oklch(94% 0 0deg);
  width: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
}
#unclic ul li a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#unclic ul li a:hover {
  text-decoration: underline;
}
#unclic ul li img {
  max-width: 3.5rem;
  margin-inline: auto;
  width: 100%;
  height: auto;
}
#unclic ul li p {
  font-family: "Source Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.2;
}

.home #actualites {
  margin-top: 10rem;
}
@media screen and (width <= 62rem) {
  .home #actualites {
    margin-top: 25rem;
  }
}
@media screen and (width <= 48rem) {
  .home #actualites {
    margin-top: 30rem;
  }
}
@media screen and (width <= 20rem) {
  .home #actualites {
    margin-top: 35rem;
  }
}

.wrapper-news {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  position: relative;
  min-height: 25rem;
  align-items: center;
  overflow: hidden;
}
.wrapper-news__content {
  grid-column: 3/11;
  grid-row: 4/13;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: oklch(93% 0.2 104.97deg);
  border-radius: 25px;
  padding: 1.75rem 2rem;
  z-index: 1;
  position: relative;
}
.wrapper-news__content p {
  font-family: "Source Sans", sans-serif;
  font-weight: 600;
}
.wrapper-news__content p.tag {
  background-color: white;
  padding: 0.25rem 1rem;
  font-size: 1.15rem;
  border-radius: 10px;
  width: fit-content;
  font-weight: 700;
  order: -1;
}
.wrapper-news__content a {
  font-family: "Source Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media screen and (width >= 62rem) {
  .wrapper-news__content {
    grid-column: 1/5;
    grid-row: 3/10;
  }
}
.wrapper-news__img {
  border-radius: 25px;
  grid-column: 1/13;
  grid-row: 1/11;
  height: 100%;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
@media screen and (width >= 62rem) {
  .wrapper-news__img {
    grid-column: 3/13;
    grid-row: 1/13;
  }
}
.wrapper-news:hover .wrapper-news__content a, .wrapper-news:focus .wrapper-news__content a, .wrapper-news:focus-visible .wrapper-news__content a {
  text-decoration: underline;
}
@media screen and (width <= 31.25rem) {
  .wrapper-news {
    grid-column: full-width;
  }
  .wrapper-news__img {
    border-radius: 0;
  }
  .wrapper-news__content {
    grid-column: 2/12;
  }
}

@media screen and (width <= 31.25rem) {
  .cta {
    justify-content: center;
  }
}
#projets {
  overflow: hidden;
}
#projets .projets {
  position: relative;
  display: flex;
  flex-direction: column;
}
#projets .projets__image {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}
#projets .projets__image figure {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
#projets .projets__image figure.active {
  opacity: 1;
  z-index: 1;
}
#projets .projets__infos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  width: 100%;
}
@media screen and (width >= 75rem) {
  #projets .projets__infos {
    position: absolute;
    bottom: 0;
    left: 0;
    gap: 2rem;
    z-index: 1;
  }
}
#projets .projets__infos h3 {
  font-size: 1.25rem;
}
#projets .projets__infos hr {
  width: 2rem;
  margin-bottom: 0.5rem;
  border: 1px solid oklch(31% 0.01 0deg);
}
@media screen and (width >= 75rem) {
  #projets .projets__infos {
    left: 5rem;
    bottom: -7rem;
  }
}
@media screen and (width <= 31.25rem) {
  #projets .projets__infos {
    grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
    padding-inline: 1rem;
    margin-top: -2rem;
    z-index: 1;
    gap: 1rem;
  }
}
#projets .projets__infos--item {
  background: oklch(100% 0 0deg);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
}
#projets .projets__infos--item a {
  display: block;
}
#projets .projets__infos--item p {
  line-height: 1.2;
}
@media screen and (width <= 31.25rem) {
  #projets .projets__infos--item:last-of-type {
    display: none;
  }
}
@media screen and (width <= 31.25rem) {
  #projets .projets {
    grid-column: full-width;
  }
}
#projets .breakout {
  z-index: 2;
}

#kiosque .content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (width >= 31.25rem) {
  #kiosque .content {
    gap: 2rem;
  }
}
#kiosque #publication {
  grid-column: 1/13;
  margin-bottom: 4rem;
}
@media screen and (width >= 62rem) {
  #kiosque #publication {
    grid-column: 1/9;
  }
}
#kiosque .wrapper-publication {
  display: flex;
  gap: 2rem;
}
@media screen and (width <= 31.25rem) {
  #kiosque .wrapper-publication {
    flex-direction: column;
    align-items: center;
  }
}
#kiosque .wrapper-publication__img {
  max-width: 12rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#kiosque .wrapper-publication__img img {
  width: 100%;
}
@media screen and (width >= 62rem) {
  #kiosque .wrapper-publication__img {
    max-width: 16rem;
    margin-bottom: 0;
  }
  #kiosque .wrapper-publication__img img {
    width: 16rem;
  }
}
#kiosque .wrapper-publication__content--title h3 {
  margin-bottom: 0;
}
#kiosque .wrapper-publication__content--title p {
  font-family: "Poppins", sans-serif;
}
#kiosque .wrapper-publication__content--title p::first-letter {
  text-transform: uppercase;
}
#kiosque .wrapper-publication__content--download {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
#kiosque .wrapper-publication__content--download p {
  font-weight: bold;
  margin-bottom: 0;
}
#kiosque .wrapper-publication__content--download span {
  font-size: 0.85rem;
  font-style: italic;
}
#kiosque .wrapper-conseil {
  grid-column: 1/13;
}
#kiosque .wrapper-conseil h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
#kiosque .wrapper-conseil h2 span {
  font-weight: normal;
  display: block;
}
#kiosque .wrapper-conseil__date {
  border-radius: 10px;
  background-color: oklch(93% 0.2 104.97deg);
  padding: 0.75rem 1.5rem;
  width: 100%;
}
#kiosque .wrapper-conseil__date p {
  font-weight: bold;
  font-size: 1.45rem;
  margin-bottom: 0;
  text-align: center;
}
#kiosque .wrapper-conseil__date p::first-letter {
  text-transform: uppercase;
}
@media screen and (width >= 62rem) {
  #kiosque .wrapper-conseil {
    grid-column: 9/13;
  }
}
#kiosque .wrapper-conseil .conseil-facebook {
  margin-top: 2rem;
  display: block;
  border: 1px solid oklch(31% 0.01 0deg);
  border-radius: 10px;
  padding: 0.5rem 1rem;
}
#kiosque .wrapper-conseil .conseil-facebook p {
  text-align: center;
  text-wrap: balance;
}
#kiosque .wrapper-conseil .conseil-facebook img {
  margin-inline: auto;
}

#socialmedia a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#socialmedia a:not(:last-of-type) {
  margin-right: 4rem;
}
@media screen and (width <= 48rem) {
  #socialmedia a:not(:last-of-type) {
    margin-right: 1rem;
  }
}
#socialmedia a img {
  margin-bottom: 0.5rem;
}
#socialmedia a p {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (width <= 62rem) {
  #socialmedia {
    margin-top: 4rem;
  }
}

.editor h1 {
  font-size: clamp(1.85rem, 1.564rem + 0.762vw, 2.25rem);
  text-align: center;
  margin-bottom: 2rem;
}
.editor h2 {
  color: oklch(57% 0.099255 211.0725deg);
  font-size: clamp(1.5rem, 1.25rem + 0.667vw, 1.85rem);
  margin-block: 3rem 2rem;
}
.editor h3 {
  font-size: clamp(1.15rem, 1.079rem + 0.19vw, 1.25rem);
  text-wrap: unset;
}
.editor h3::before {
  content: "";
  background-color: oklch(57% 0.099255 211.0725deg);
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.editor h2,
.editor h3 {
  scroll-margin-top: 100px;
}
@media (width <= 62rem) {
  .editor h2,
  .editor h3 {
    scroll-margin-top: 150px;
  }
}
.editor h2 + h3,
.editor ul + p {
  margin-top: 1rem;
}
.editor h4 {
  color: oklch(57% 0.099255 211.0725deg);
  margin-block: 2rem 0.5rem;
}
.editor h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
}
.editor p {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
}
.editor p + h2,
.editor p + h3,
.editor figure + h2,
.editor figure + h3,
.editor .wp-block-image + h2,
.editor .wp-block-image + h3,
.editor ul + h2,
.editor ul + h3,
.editor h1 + .featured-block,
.editor .documents-wrapper + h3,
.editor .documents-wrapper + p,
.editor ul + .documents-wrapper {
  margin-top: 2rem;
}
.editor ul + h4 {
  margin-top: 1rem;
}
.editor p + figure,
.editor p + .wp-block-image {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.editor a {
  font-weight: bold;
  color: oklch(57% 0.099255 211.0725deg);
  text-decoration: underline;
}
.editor a:hover {
  text-decoration: none;
}
.editor ul {
  list-style: disc;
  padding-left: 2rem;
}
.editor ul li {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
}
.editor ul li::marker {
  color: oklch(57% 0.099255 211.0725deg);
}
.editor picture img {
  border-radius: 10px;
}
.editor figure {
  margin-top: 2rem;
}
.editor figure img {
  border-radius: 15px;
}
.editor figure.wp-block-gallery.has-nested-images {
  gap: 1rem;
  flex-wrap: wrap;
}
@media (width >= 62rem) {
  .editor figure.wp-block-gallery.has-nested-images.columns-2 > * {
    width: 45% !important;
  }
  .editor figure.wp-block-gallery.has-nested-images.columns-3 > * {
    width: 30% !important;
  }
  .editor figure.wp-block-gallery.has-nested-images.columns-4 > * {
    width: 22% !important;
  }
}
.editor figure.wp-block-gallery.is-cropped picture {
  height: 100%;
}
.editor figure.wp-block-gallery.is-cropped picture img {
  object-fit: cover;
}
.editor figure figcaption {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 0.85rem;
}
.editor .wp-block-media-text {
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .editor .wp-block-media-text > .wp-block-media-text__content {
    padding: 0 2rem 0 0;
  }
}
.editor .documents-wrapper {
  margin-top: 1rem;
}
.editor .documents-wrapper a {
  color: oklch(31% 0.01 0deg);
  text-decoration: none;
}
.editor .documents-wrapper a:hover {
  text-decoration: underline;
}
.editor .documents-wrapper a span {
  font-weight: 300;
  font-style: italic;
}
.editor .child-pages {
  list-style: none;
}
.editor .child-pages > li {
  margin-bottom: 0.5rem;
  position: relative;
}
.editor .child-pages > li::before {
  content: "";
  background-color: oklch(57% 0.099255 211.0725deg);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  left: -1rem;
  top: 0.5rem;
  position: absolute;
}
.editor .child-pages > li a,
.editor .child-pages > li button {
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  text-underline-offset: 2px;
  line-height: 1.2;
  color: oklch(31% 0.01 0deg);
}
.editor .child-pages > li a:hover,
.editor .child-pages > li button:hover {
  text-decoration: underline;
}
.editor .child-pages > li .submenu li {
  list-style: none;
}
.editor .child-pages > li .submenu li a {
  font-weight: normal;
  text-align: left;
  font-size: 1.15rem;
  text-decoration: none;
  text-underline-offset: 2px;
  line-height: 1.2;
}
.editor .child-pages > li .submenu li a:hover {
  text-decoration: underline;
}
.editor .has-background {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.editor .wp-block-table.is-style-stripes {
  border-bottom: 0;
}
.editor .wp-block-table table {
  margin-bottom: 1rem;
}
@media (width <= 31.25rem) {
  .editor .wp-block-table table tbody {
    overflow-x: scroll;
  }
}
@media (width <= 48rem) {
  .editor .wp-block-table table tr,
  .editor .wp-block-table table td {
    font-size: 0.85rem;
  }
}
@media (width <= 48rem) {
  .editor .wp-block-table table.has-fixed-layout th {
    word-break: normal;
  }
}
.editor .wp-block-separator {
  border-top: 1px solid;
}
.editor .wp-block-separator.is-style-dots {
  margin-top: 2rem;
}

@media screen and (width >= 62rem) {
  .page-template-page-sidebar .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-columns: 20% 1fr;
  }
}
.page-template-page-sidebar aside {
  position: sticky;
  top: 10rem;
  align-self: start;
  height: fit-content;
}
.page-template-page-sidebar aside > p {
  font-weight: bold;
}
.page-template-page-sidebar aside ul {
  list-style: none;
  padding-left: 1rem;
}
.page-template-page-sidebar aside ul.menu-h2 {
  position: relative;
  padding-top: 1rem;
  margin-left: 5px;
}
.page-template-page-sidebar aside ul.menu-h2::before {
  content: "";
  width: 1.5px;
  background: oklch(31% 0.01 0deg);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page-template-page-sidebar aside ul.menu-h2 > li > a {
  font-family: "Poppins SemiBold", sans-serif;
  color: oklch(57% 0.099255 211.0725deg);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.page-template-page-sidebar aside ul.menu-h2 > li > a:hover {
  text-decoration: underline;
}
.page-template-page-sidebar aside ul.menu-h2 > li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.page-template-page-sidebar aside ul.menu-h2 li {
  position: relative;
  line-height: 1;
}
.page-template-page-sidebar aside ul.menu-h2 li.active::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  background: oklch(31% 0.01 0deg);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.page-template-page-sidebar aside ul ul {
  padding-left: 0;
  margin-top: 0.25rem;
}
.page-template-page-sidebar aside ul ul li {
  margin-block: 0.5rem;
}
.page-template-page-sidebar aside ul ul li a {
  font-family: "Poppins SemiBold", sans-serif;
  color: oklch(31% 0.01 0deg);
  font-size: 0.75rem;
  text-decoration: none;
}
.page-template-page-sidebar aside ul ul li a:hover {
  text-decoration: underline;
}
.page-template-page-sidebar aside ul ul li.active a {
  font-weight: bold;
  text-decoration: underline;
}
.page-template-page-sidebar aside ul ul li.active::before {
  top: 0.35rem !important;
}
@media (width <= 62rem) {
  .page-template-page-sidebar aside ul[hidden] {
    display: none;
  }
}
@media (width > 62rem) {
  .page-template-page-sidebar aside {
    margin-top: 6rem;
  }
}
@media (width <= 62rem) {
  .page-template-page-sidebar aside {
    background: oklch(57% 0.099255 211.0725deg);
    padding: 1rem;
    top: 3rem;
    margin-bottom: 4rem;
    border-radius: 0 0 10px 10px;
  }
  .page-template-page-sidebar aside p {
    margin-bottom: 0;
  }
  .page-template-page-sidebar aside .summary-toggle {
    width: 100%;
    font-family: "Poppins Bold", sans-serif;
    color: oklch(100% 0 0deg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-template-page-sidebar aside .summary-toggle::after {
    content: "";
    background: url("../img/pictos/chevron-white.svg") no-repeat;
    background-size: cover !important;
    width: 1.5rem;
    height: 1.5rem;
    display: block;
  }
  .page-template-page-sidebar aside .summary-menu {
    max-height: 15rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    margin-top: 1rem;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar {
    width: 8px;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  .page-template-page-sidebar aside .summary-menu li a {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: oklch(100% 0 0deg);
  }
  .page-template-page-sidebar aside .summary-menu li:not(.submenu) a {
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 0.85rem;
  }
}

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

.page-template-page-publications p.count {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
}
.page-template-page-publications p.count span {
  font-style: italic;
  font-weight: bold;
}
.page-template-page-publications .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 2rem;
}
.page-template-page-publications .wrapper .item {
  position: relative;
  border-radius: 10px;
  padding: 1rem;
  background-color: oklch(94% 0 0deg);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item__thumb img {
  border: 5px solid oklch(100% 0 0deg);
  width: 12rem;
}
.page-template-page-publications .wrapper .item__content--title h3 {
  margin-bottom: 0;
  text-transform: capitalize;
}
.page-template-page-publications .wrapper .item__content--title h3,
.page-template-page-publications .wrapper .item__content--title p {
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item__content--title p {
  font-size: 0.85rem;
  font-style: italic;
}
.page-template-page-publications .wrapper .item__content--download svg {
  width: 1.5rem;
  height: 1.5rem;
}
.page-template-page-publications .wrapper .item__content--download svg path {
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item__content--download a {
  display: flex;
  align-items: baseline;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item__content--download a:hover {
  text-decoration: underline;
}
.page-template-page-publications .wrapper .item__content--download a p {
  margin-bottom: 0;
  padding-left: 0.5rem;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item__content--download a span {
  padding-left: 0.5rem;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.75;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-publications .wrapper .item:hover {
  background-color: oklch(57% 0.099255 211.0725deg);
}
.page-template-page-publications .wrapper .item:hover > * {
  color: oklch(100% 0 0deg);
}
.page-template-page-publications .wrapper .item:hover .item__content--download svg path {
  fill: oklch(100% 0 0deg);
}

.single-post .editor img {
  border-radius: 10px;
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .single-post .editor img {
    max-width: 50rem;
  }
}
.single-post .editor #map {
  border-radius: 10px;
}
.single-post .editor #map .mapboxgl-popup-content p {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
}

#jobs {
  list-style: none;
  padding-left: 0;
}
#jobs .item {
  border: 1px solid oklch(94% 0 0deg);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  background-color: oklch(100% 0 0deg / 0);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#jobs .item:not(:last-of-type) {
  margin-bottom: 1rem;
}
#jobs .item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid oklch(94% 0 0deg);
  margin-bottom: 1rem;
}
#jobs .item__header h3 {
  color: oklch(31% 0.01 0deg);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#jobs .item__header h3::before {
  display: none;
}
#jobs .item__header p.contrat,
#jobs .item__header p.offre-cat {
  font-family: "Poppins SemiBold", sans-serif;
  margin-bottom: 0;
}
#jobs .item p {
  font-size: 0.85rem;
  color: oklch(31% 0.01 0deg);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#jobs .item p.date {
  font-style: italic;
}
#jobs .item a {
  color: white;
  background: oklch(57% 0.099255 211.0725deg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#jobs .item a:hover {
  color: oklch(31% 0.01 0deg);
  background: oklch(93% 0.2 104.97deg);
}
#jobs .item:hover {
  background-color: oklch(94% 0 0deg);
}

@media screen and (width >= 62rem) {
  .single-emploi .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-columns: 70% 1fr;
  }
}
.single-emploi aside {
  position: sticky;
  top: 10rem;
  align-self: start;
  height: fit-content;
  background: #fafafa;
  border-radius: 10px;
  padding: 1rem;
}
.single-emploi aside p {
  font-size: 0.85rem;
  font-family: "Poppins SemiBold", sans-serif;
}
.single-emploi aside p span {
  font-size: 0.75rem;
  font-family: "Poppins Light", sans-serif;
}
.single-emploi aside p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.single-emploi aside a:not(.btn) {
  color: oklch(57% 0.099255 211.0725deg);
  font-weight: bold;
  text-decoration: underline;
}
.single-emploi aside a:not(.btn):hover {
  text-decoration: none;
}
.single-emploi aside a:not(.btn) img {
  margin-right: 0.25rem;
}
.single-emploi aside .btn.btn-outline {
  font-size: 1.25rem;
  padding-inline: 3rem;
  margin-inline: auto;
  display: flex;
  margin-top: 2rem;
  text-decoration: none;
  background-color: oklch(93% 0.2 104.97deg);
  border-color: oklch(93% 0.2 104.97deg);
}
.single-emploi aside .btn.btn-outline:hover, .single-emploi aside .btn.btn-outline:focus {
  border-color: oklch(31% 0.01 0deg);
  background-color: oklch(100% 0 0deg / 0);
}
.single-emploi aside::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 3rem;
  height: 3rem;
  background: url("../img/pictos/job.svg") no-repeat;
  background-size: cover !important;
}

.page-id-3031 .editor .wp-block-columns {
  gap: 2rem;
}
.page-id-3031 form {
  border-radius: 10px;
  background-color: oklch(94% 0 0deg);
  padding: 2rem;
}
.page-id-3031 form input[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.5rem 1.5rem !important;
  font-weight: 700 !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(31% 0.01 0deg) !important;
  color: oklch(31% 0.01 0deg) !important;
}
.page-id-3031 form input[type=submit]:hover {
  background-color: oklch(93% 0.2 104.97deg) !important;
  border-color: oklch(93% 0.2 104.97deg) !important;
}

.page-id-192 .wp-block-column {
  position: relative;
}
.page-id-192 .wp-block-column hr {
  border-top: 1px solid;
  position: absolute;
  bottom: 0;
  left: 2em;
  width: calc(100% - 4em);
}

.search .page-header p {
  font-size: 1.15rem;
  font-style: italic;
}
.search #results .wrapper {
  display: grid;
  gap: 2rem;
}
.search #results .wrapper .card {
  position: relative;
  border-radius: 10px;
  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(31% 0.01 0deg);
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header {
  display: flex;
  flex-wrap: wrap;
  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;
  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(57% 0.099255 211.0725deg);
  color: oklch(100% 0 0deg);
}
.search #results .wrapper .card__header--post.bg-agenda {
  background-color: oklch(93% 0.2 104.97deg);
  color: oklch(31% 0.01 0deg);
}
.search #results .wrapper .card__header--post.bg-post {
  background-color: oklch(67.8% 0.1656 29.53deg);
  color: oklch(100% 0 0deg);
}
.search #results .wrapper .card__header--post.bg-publication {
  background-color: oklch(72% 0.13 233.21deg);
  color: oklch(100% 0 0deg);
}
.search #results .wrapper .card__header--post.bg-association {
  background-color: oklch(93% 0.06 198.58deg);
  color: oklch(31% 0.01 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(57% 0.099255 211.0725deg);
}
.search #results .wrapper .card:hover .card__body a, .search #results .wrapper .card:focus-visible .card__body a {
  text-decoration: none;
}
.search #results .wrapper .card:hover .card__header--post, .search #results .wrapper .card:focus-visible .card__header--post {
  background-color: oklch(100% 0 0deg);
  color: oklch(31% 0.01 0deg);
}
.search #results .wrapper .card:hover > *, .search #results .wrapper .card:focus-visible > * {
  color: oklch(100% 0 0deg);
}
.search #results .wrapper .card:hover > * h2, .search #results .wrapper .card:focus-visible > * h2 {
  color: oklch(100% 0 0deg);
}

.virgule {
  position: relative;
}
.virgule::before {
  content: "";
  position: absolute;
  background: url("../img/pictos/virgule-blanche.svg") no-repeat;
  background-size: cover !important;
  right: -1rem;
  top: -1rem;
  height: 4rem;
  width: 4rem;
  z-index: 2;
}
.virgule.virgule-jaune::before {
  background: url("../img/pictos/virgule-jaune.svg") no-repeat;
}

.featured-block {
  background-color: oklch(94% 0 0deg);
  padding: 2rem;
  border-radius: 25px;
  margin-bottom: 2rem;
}
@media screen and (width >= 75rem) {
  .featured-block {
    width: 75%;
  }
}
.featured-block > p {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 1.15rem;
  margin-block: 0 1.5rem;
}
.featured-block ul {
  padding-left: 0;
  list-style: none;
}
.featured-block ul li {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
  overflow: hidden;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
}
.featured-block ul li img {
  margin-right: 0.5rem;
  padding-top: 0.15rem;
}
.featured-block ul li a {
  font-family: "Poppins SemiBold", sans-serif;
  color: oklch(31% 0.01 0deg);
}
.featured-block ul .horaires p {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.featured-block ul .horaires ul {
  padding-left: 1rem;
}
.featured-block ul .horaires ul li {
  position: relative;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  overflow: visible;
}
.featured-block ul .horaires ul li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  border-radius: 50%;
  width: 0.35rem;
  height: 0.35rem;
  background-color: oklch(31% 0.01 0deg);
}
.featured-block__content {
  border-left: 1px solid;
  padding-left: 2rem;
}
.featured-block__content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}
@media (width >= 62rem) {
  .featured-block__content {
    margin-left: 2rem;
  }
}
.featured-block__content .horaires ul li {
  display: block;
}
.featured-block a,
.featured-block .download {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.featured-block a img,
.featured-block .download img {
  margin-right: 0.5rem;
}
.featured-block a:hover,
.featured-block .download:hover {
  text-decoration: underline;
}
.wp-block-columns .featured-block {
  width: 100%;
}

p + .featured-block {
  margin-top: 2rem;
}

.featured-block + .featured-block {
  margin-top: 1rem;
}

.editor ul.wp-block-tt-accordion {
  padding-left: 0;
  list-style: none;
}
.editor ul.wp-block-tt-accordion li {
  border-bottom: 1px solid oklch(94% 0 0deg);
  border-top: 1px solid oklch(94% 0 0deg);
}
.editor ul.wp-block-tt-accordion li button {
  background-color: oklch(100% 0 0deg / 0) !important;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.editor ul.wp-block-tt-accordion li button span {
  font-family: "Poppins SemiBold", sans-serif;
}
.editor ul.wp-block-tt-accordion li button svg polyline {
  stroke: oklch(57% 0.099255 211.0725deg);
}
.editor ul.wp-block-tt-accordion li button:focus-visible {
  outline: 2px dotted oklch(31% 0.01 0deg);
  outline-offset: 2px;
}
.editor ul.wp-block-tt-accordion li button.expanded {
  background-color: oklch(94% 0 0deg) !important;
}
.editor ul.wp-block-tt-accordion li .wp-block-tt-accordion-item-panel {
  padding-block: 1rem;
}

#partage {
  border-top: 1px solid oklch(94% 0 0deg);
  padding-top: 1rem;
  margin-top: 2rem;
}
@media (width >= 62rem) {
  #partage {
    max-width: 60%;
  }
}
#partage p {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#partage ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
}
#partage ul li {
  margin-right: 0.5rem;
}
#partage ul li a img {
  filter: grayscale(1);
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#partage ul li a:hover img, #partage ul li a:focus img, #partage ul li a:focus-visible img {
  filter: grayscale(0);
}
#partage ul li a:focus img, #partage ul li a:focus-visible img {
  outline: 2px dotted oklch(31% 0.01 0deg);
  outline-offset: 2px;
}

#tarteaucitronRoot .tarteaucitronH1 {
  font-family: "Poppins Bold", sans-serif;
  color: oklch(57% 0.099255 211.0725deg) !important;
}

#tarteaucitronPrivacyUrlDialog {
  text-decoration: underline !important;
  color: oklch(57% 0.099255 211.0725deg) !important;
  font-family: "Poppins SemiBold", sans-serif !important;
}
#tarteaucitronPrivacyUrlDialog:hover {
  text-decoration: none !important;
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 1.875rem !important;
  height: 1.875rem !important;
}

.tarteaucitronSelfLink {
  display: none !important;
}

.page-template-page-hub .editor > p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
.page-template-page-hub .children {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(15rem, 12.321rem + 7.143vw, 18.75rem), 1fr));
  gap: 2rem;
}
.page-template-page-hub .children__item img {
  border-radius: 15px;
  height: 9rem;
  width: 100%;
  margin-inline: auto;
  object-fit: cover;
  margin-bottom: 1rem;
}
.page-template-page-hub .children__item a {
  color: oklch(31% 0.01 0deg);
  text-decoration: none;
}
.page-template-page-hub .children__item h2 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.page-template-page-hub .children__item h2 > a {
  position: relative;
}
.page-template-page-hub .children__item h2 > a::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.25rem;
  width: 1.65rem;
  height: 1.65rem;
  background: oklch(93% 0.06 198.58deg);
  border-radius: 50%;
  z-index: -1;
}
.page-template-page-hub .children__item h2 > a:hover {
  text-decoration: underline;
}
.page-template-page-hub .children__item > ul {
  list-style: none;
  padding-left: 1rem;
}
.page-template-page-hub .children__item > ul > li {
  margin-bottom: 0.5rem;
  position: relative;
}
.page-template-page-hub .children__item > ul > li::before {
  content: "";
  background-color: oklch(57% 0.099255 211.0725deg);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  left: -1rem;
  top: 0.5rem;
  position: absolute;
}
.page-template-page-hub .children__item > ul > li button,
.page-template-page-hub .children__item > ul > li a {
  text-align: left;
  font-size: 1.15rem;
  text-decoration: none;
  text-underline-offset: 2px;
  line-height: 1.2;
}
.page-template-page-hub .children__item > ul > li button:hover,
.page-template-page-hub .children__item > ul > li a:hover {
  text-decoration: underline;
}
.page-template-page-hub .children__item > ul > li > button, .page-template-page-hub .children__item > ul > li > a {
  font-weight: 600;
}

ul.submenu {
  padding-left: 0.5rem;
}
ul.submenu[data-visible=true] {
  max-height: fit-content;
}
ul.submenu li {
  position: relative;
  padding-left: 0.5rem;
}
ul.submenu li::before {
  content: "";
  position: absolute;
  background: url("../img/pictos/chevron-blue.svg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 0.85rem;
  left: -0.65rem;
  height: 0.85rem;
  top: 0.35rem;
}
ul.submenu li a {
  font-size: 0.95rem;
  font-weight: normal;
}

.archive .wrapper,
.blog .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(15rem, 12.321rem + 7.143vw, 18.75rem), 1fr));
  gap: 2rem;
}
.archive .card,
.blog .card {
  position: relative;
}
.archive .card__header,
.blog .card__header {
  margin-bottom: 1rem;
  border-radius: 25px;
  overflow: hidden;
}
.archive .card__header img,
.blog .card__header img {
  height: 15rem;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  transform: scale(1);
  transition: transform 0.35s ease-in-out;
}
.archive .card:hover .card__header img,
.blog .card:hover .card__header img {
  transform: scale(1.02);
}
.archive .card__body .card-date,
.blog .card__body .card-date {
  font-size: 0.85rem;
  font-style: italic;
}

.blog #actualites {
  position: relative;
}
@media (width >= 62rem) {
  .blog #actualites {
    display: flex;
    gap: 2rem;
  }
}
.blog aside {
  background-color: oklch(94% 0 0deg);
  padding: 1rem;
  border-radius: 25px;
  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 {
  color: oklch(57% 0.099255 211.0725deg);
  font-weight: 600;
}
.blog aside ul {
  padding-left: 0;
}
.blog aside ul li a span {
  font-size: 0.85rem;
  font-style: italic;
}
.blog aside ul li a:hover {
  text-decoration: underline;
}
.blog .wrapper {
  width: 100%;
}

.post-type-archive-projet .card {
  position: relative;
  border-radius: 15px;
  background-color: oklch(94% 0 0deg);
}
.post-type-archive-projet .card__header {
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.post-type-archive-projet .card__header img {
  height: 15rem;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.25s ease;
}
.post-type-archive-projet .card__body {
  padding: 1rem;
  padding-bottom: 2rem;
}
.post-type-archive-projet .card:hover .card__header img {
  transform: scale(1.02);
}

.suite {
  font-size: 0.85rem;
  font-style: italic;
  text-decoration: underline;
  text-align: right;
  margin-bottom: 0;
}

.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(57% 0.099255 211.0725deg);
  color: oklch(100% 0 0deg);
  font-size: 0.85rem;
  font-family: "Poppins SemiBold", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(57% 0.099255 211.0725deg);
  cursor: pointer;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
  color: oklch(57% 0.099255 211.0725deg);
  background-color: oklch(100% 0 0deg / 0);
}
.pagination ul li span.current {
  background: none;
  color: oklch(57% 0.099255 211.0725deg);
  border-color: oklch(57% 0.099255 211.0725deg);
  cursor: unset;
}

.page-template-page-travaux .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(15rem, 12.321rem + 7.143vw, 18.75rem), 1fr));
}
.page-template-page-travaux .wrapper .card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  border: 1px solid oklch(94% 0 0deg);
  background-color: transparent;
  padding: 1rem;
  margin-bottom: 2rem;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-template-page-travaux .wrapper .card:hover {
  background-color: oklch(94% 0 0deg);
}
.page-template-page-travaux .wrapper .card .date {
  color: oklch(67.8% 0.1656 29.53deg);
  font-weight: 600;
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
}

#agenda .card {
  position: relative;
}
#agenda .card .card-header__img {
  background-color: oklch(31% 0.01 0deg);
  border-radius: 10px;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#agenda .card .card-header__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  object-fit: cover;
  object-position: top;
  transition: all 0.35s ease;
}
#agenda .card .card-header h3 {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
  padding: 1rem;
  border-radius: 10px;
  background-color: oklch(93% 0.06 198.58deg);
  margin-top: 0.5rem;
}
#agenda .card .card-body__date img, #agenda .card .card-body__place img {
  margin-right: 0.5rem;
}
#agenda .card .card-body__date p, #agenda .card .card-body__place p {
  margin: 0;
  font-size: 0.85rem;
  font-family: "Poppins SemiBold", sans-serif;
}
#agenda .card:hover .card-header__img img, #agenda .card:focus .card-header__img img, #agenda .card:focus-visible .card-header__img img {
  transform: scale(1.02);
}

@media screen and (width >= 62rem) {
  .single-agenda .wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}
.single-agenda .agenda-sidebar {
  grid-column: 1/13;
  margin-bottom: 2rem;
}
@media screen and (width >= 62rem) {
  .single-agenda .agenda-sidebar {
    grid-column: 1/5;
  }
}
.single-agenda .agenda-sidebar__content {
  background-color: oklch(94% 0 0deg);
  border-radius: 10px;
  padding: 1rem;
  height: fit-content;
}
.single-agenda .agenda-sidebar .event-date,
.single-agenda .agenda-sidebar .event-place,
.single-agenda .agenda-sidebar .event-time,
.single-agenda .agenda-sidebar .event-orga {
  font-family: "Poppins SemiBold", sans-serif;
}
.single-agenda .agenda-sidebar .event-date {
  text-transform: capitalize;
}
.single-agenda .agenda-sidebar .event-orga {
  font-size: 0.85rem;
}
.single-agenda .agenda-sidebar .event-orga img {
  padding-top: 0.2rem;
}
.single-agenda .agenda-sidebar .event-place {
  margin-bottom: 0;
}
.single-agenda .agenda-sidebar__map {
  border-radius: 10px;
}
.single-agenda .editor {
  grid-column: 1/13;
}
@media screen and (width >= 62rem) {
  .single-agenda .editor {
    grid-column: 5/13;
  }
}
.single-agenda .editor h1 {
  text-align: left;
}
.single-agenda .editor__img {
  margin-top: 2rem;
}
.single-agenda .editor__img a {
  cursor: pointer;
}
.single-agenda .editor__img a:focus img, .single-agenda .editor__img a:focus-visible img {
  outline: 2px dotted oklch(31% 0.01 0deg);
  outline-offset: 2px;
}
.single-agenda .editor__img img {
  width: 100%;
  border-radius: 10px;
}
@media (width >= 62rem) {
  .single-agenda .editor__img img {
    width: 60%;
  }
}

.post-type-archive-agenda #agenda-filtres {
  background-color: oklch(57% 0.099255 211.0725deg);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.post-type-archive-agenda #agenda-filtres form {
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-around;
}
@media (width <= 62rem) {
  .post-type-archive-agenda #agenda-filtres form {
    flex-direction: column;
    align-items: center;
  }
  .post-type-archive-agenda #agenda-filtres form > *,
  .post-type-archive-agenda #agenda-filtres form select,
  .post-type-archive-agenda #agenda-filtres form .flatpickr-input {
    margin-bottom: 0.5rem;
  }
}
.post-type-archive-agenda #agenda-filtres form fieldset {
  border: 0;
}
@media (width <= 62rem) {
  .post-type-archive-agenda #agenda-filtres form fieldset > * {
    width: 100%;
  }
}
.post-type-archive-agenda #agenda-filtres form input[type=text],
.post-type-archive-agenda #agenda-filtres form input[type=date],
.post-type-archive-agenda #agenda-filtres form select {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
@media (width >= 62rem) {
  .post-type-archive-agenda #agenda-filtres form select,
  .post-type-archive-agenda #agenda-filtres form input.form-control {
    width: 48%;
  }
}
.post-type-archive-agenda #agenda-filtres form label {
  color: oklch(100% 0 0deg);
}
.post-type-archive-agenda #agenda-filtres form button[type=submit] {
  font-weight: bold;
  background-color: oklch(93% 0.06 198.58deg);
  color: oklch(31% 0.01 0deg);
  padding-inline: 1rem;
  border-radius: 5px;
  transition: all 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.post-type-archive-agenda #agenda-filtres form button[type=submit]:hover {
  background-color: oklch(93% 0.2 104.97deg);
}
@media (width <= 62rem) {
  .post-type-archive-agenda #agenda-filtres form button[type=submit] {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
@media (width >= 75rem) {
  .post-type-archive-agenda #agenda-filtres form #datepicker label {
    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;
  }
}
.post-type-archive-agenda .wrapper {
  grid-template-columns: repeat(auto-fill, minmax(clamp(8.625rem, 3.625rem + 13.333vw, 15.625rem), 1fr));
}

#evenements_passes .wrapper {
  grid-template-columns: repeat(auto-fill, minmax(clamp(8.625rem, 3.625rem + 13.333vw, 15.625rem), 1fr));
}
#evenements_passes .wrapper .card {
  filter: grayscale(1);
  transition: all 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}
#evenements_passes .wrapper .card:hover {
  filter: grayscale(0);
}

.flatpickr-day {
  transition: all 0.15s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: oklch(57% 0.099255 211.0725deg) !important;
  border-color: oklch(57% 0.099255 211.0725deg) !important;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  background: oklch(57% 0.099255 211.0725deg) !important;
  border-color: oklch(57% 0.099255 211.0725deg) !important;
  color: oklch(100% 0 0deg) !important;
}

#map .mapboxgl-ctrl-bottom-left,
#map .mapboxgl-ctrl-bottom-right {
  display: none !important;
}
#map .mapboxgl-popup .mapboxgl-popup-content {
  background-color: oklch(100% 0 0deg);
  padding: 1rem;
  border-radius: 10px;
}
#map .mapboxgl-popup .mapboxgl-popup-content > * {
  color: oklch(31% 0.01 0deg);
}
#map .mapboxgl-popup .mapboxgl-popup-content h2 {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
  color: oklch(57% 0.099255 211.0725deg);
}
#map .mapboxgl-popup .mapboxgl-popup-content .mapboxgl-popup-close-button {
  right: 0.5rem;
  top: 0.25rem;
  font-size: 1rem;
}

.single-association .wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (width >= 48rem) {
  .single-association .wrapper {
    gap: 2rem;
  }
}
.single-association .association-sidebar {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
@media screen and (width >= 62rem) {
  .single-association .association-sidebar {
    grid-column: 8/13;
    grid-row: 1;
    position: sticky;
    top: 8rem;
    align-self: start;
    height: fit-content;
  }
}
.single-association .association-sidebar__content {
  background-color: oklch(94% 0 0deg);
  border-radius: 10px;
  padding: 1rem;
  height: fit-content;
}
.single-association .association-sidebar__content img {
  width: 1.1rem;
  margin-right: 0.5rem;
}
.single-association .association-sidebar__content a {
  font-size: 0.85rem;
  font-family: "Poppins SemiBold", sans-serif;
  text-decoration: underline;
}
.single-association .association-sidebar__content a:hover {
  text-decoration: none;
}
.single-association .association-sidebar__photo {
  margin-top: 1rem;
}
.single-association .association-sidebar__photo img {
  width: 100%;
  border-radius: 10px;
}
.single-association .editor {
  grid-column: 1/-1;
}
@media (width >= 62rem) {
  .single-association .editor {
    grid-column: 1/8;
    grid-row: 1;
  }
}
.single-association .editor h1 {
  text-align: left;
}
.single-association .editor .theme {
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.single-association .editor .cat {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 0.5rem;
  color: oklch(57% 0.099255 211.0725deg);
}

.post-type-archive-association #assos-filtres {
  background-color: oklch(57% 0.099255 211.0725deg);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.post-type-archive-association #assos-filtres form {
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.75rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media (width <= 62rem) {
  .post-type-archive-association #assos-filtres form {
    flex-direction: column;
    align-items: center;
  }
  .post-type-archive-association #assos-filtres form > * {
    margin-bottom: 0.5rem;
  }
}
.post-type-archive-association #assos-filtres form fieldset {
  border: 0;
  grid-column: 1/-1;
}
.post-type-archive-association #assos-filtres form fieldset input,
.post-type-archive-association #assos-filtres form fieldset select {
  width: 100%;
}
@media (width <= 62rem) {
  .post-type-archive-association #assos-filtres form fieldset select {
    margin-bottom: 1rem;
  }
}
@media (width >= 62rem) {
  .post-type-archive-association #assos-filtres form fieldset:first-of-type {
    grid-column: 1/6;
  }
  .post-type-archive-association #assos-filtres form fieldset:first-of-type select {
    width: 45%;
  }
  .post-type-archive-association #assos-filtres form fieldset:nth-of-type(2) {
    grid-column: 6/11;
    text-align: center;
  }
  .post-type-archive-association #assos-filtres form fieldset:nth-of-type(2) input {
    width: 100%;
  }
}
.post-type-archive-association #assos-filtres form input[type=text],
.post-type-archive-association #assos-filtres form input[type=date],
.post-type-archive-association #assos-filtres form select {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.post-type-archive-association #assos-filtres form button[type=submit] {
  font-weight: bold;
  background-color: oklch(93% 0.06 198.58deg);
  color: oklch(31% 0.01 0deg);
  padding-inline: 1rem;
  border-radius: 5px;
  transition: all 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (width >= 62rem) {
  .post-type-archive-association #assos-filtres form button[type=submit] {
    grid-column: 11/13;
  }
}
@media (width <= 62rem) {
  .post-type-archive-association #assos-filtres form button[type=submit] {
    width: 100%;
    grid-column: 3/11;
    height: 2rem;
  }
}
.post-type-archive-association #assos-filtres form button[type=submit]:hover {
  background-color: oklch(93% 0.2 104.97deg);
}
.post-type-archive-association .wrapper {
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
}
.post-type-archive-association .card {
  background-color: oklch(94% 0 0deg);
  border-radius: 10px;
  transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.post-type-archive-association .card > * {
  color: oklch(31% 0.01 0deg);
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.post-type-archive-association .card__header {
  min-height: 10rem;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.post-type-archive-association .card__header img {
  border-radius: 10px 10px 0 0;
}
.post-type-archive-association .card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  height: 100%;
}
.post-type-archive-association .card__body h2 {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
  color: oklch(57% 0.099255 211.0725deg);
  order: 1;
  margin-bottom: 0;
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.post-type-archive-association .card__body--category {
  order: 1;
  margin-bottom: 0;
}
.post-type-archive-association .card__body--category p {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.post-type-archive-association .card__body--theme p {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
}
.post-type-archive-association .card__body--excerpt {
  order: 3;
}
.post-type-archive-association .card__body--excerpt p {
  font-size: 0.85rem;
}
.post-type-archive-association .card__body--cta {
  order: 4;
}
.post-type-archive-association .card__body--cta a {
  text-decoration: underline;
  font-size: 0.75rem;
  text-align: right;
  font-family: "Poppins Medium", sans-serif;
}
.post-type-archive-association .card:hover, .post-type-archive-association .card:focus-visible {
  background-color: oklch(57% 0.099255 211.0725deg);
}
.post-type-archive-association .card:hover > *, .post-type-archive-association .card:focus-visible > * {
  color: oklch(100% 0 0deg);
}
.post-type-archive-association .card:hover > * h2, .post-type-archive-association .card:focus-visible > * h2 {
  color: oklch(100% 0 0deg);
}

.page-template-page-elus #listing h2 {
  margin: 2rem auto;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: initial;
  text-align: center;
}
.page-template-page-elus #listing h2::after {
  display: none;
}
.page-template-page-elus #listing .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}
@media (width <= 31.25rem) {
  .page-template-page-elus #listing .wrapper {
    grid-template-columns: repeat(auto-fill, minmax(8.125rem, 1fr));
    gap: 1rem;
  }
}
.page-template-page-elus #listing .elu-soustitre {
  text-align: center;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 2rem;
  background: none;
  padding-left: 0;
}
.page-template-page-elus #listing .elu-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  background-color: oklch(94% 0 0deg);
  width: 100%;
  list-style: none;
  border-radius: 10px;
}
.page-template-page-elus #listing .elu-item .elu-photo {
  display: block;
  height: 21rem;
  object-fit: cover;
  overflow: hidden;
}
@media (width <= 31.25rem) {
  .page-template-page-elus #listing .elu-item .elu-photo {
    height: 10rem;
  }
}
.page-template-page-elus #listing .elu-item .elu-photo img {
  border-radius: 10px 10px 0 0;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.page-template-page-elus #listing .elu-item .elu-content {
  padding: 1rem;
}
@media (width <= 31.25rem) {
  .page-template-page-elus #listing .elu-item .elu-content {
    padding: 0.5rem;
  }
}
.page-template-page-elus #listing .elu-item .elu-content .elu-fonction {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: oklch(31% 0.01 0deg);
}
.page-template-page-elus #listing .elu-item .elu-content .elu-nom {
  font-size: clamp(1rem, 0.893rem + 0.286vw, 1.15rem);
  text-transform: none;
  margin: 0.5rem auto 1.5rem;
  background: none;
  padding-left: 0;
  text-align: center;
  position: relative;
}
.page-template-page-elus #listing .elu-item .elu-content .elu-nom::after {
  content: "";
  background: oklch(57% 0.099255 211.0725deg);
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 2px;
  position: absolute;
  width: 2rem;
}
.page-template-page-elus #listing .elu-item .elu-content .elu-nom::before {
  display: none;
}
.page-template-page-elus #listing .elu-item .elu-content .elu-desc {
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
  text-align: center;
}
.page-template-page-elus #listing .elu-item:hover .elu-photo img {
  filter: grayscale(0);
}
.page-template-page-elus #listing #maire {
  max-width: 18rem;
  margin: 0 auto 4rem;
}
.page-template-page-elus #listing #maire .elu-photo {
  height: 16rem;
}
@media (width >= 48rem) {
  .page-template-page-elus #listing #maire .elu-photo {
    width: 18rem;
    height: 20rem;
  }
}
.page-template-page-elus #listing #maire .elu-content {
  padding: 2rem 1rem;
  text-align: center;
}
.page-template-page-elus #listing #maire .elu-content .elu-desc {
  font-size: 1.2rem;
  line-height: 1.4;
}

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