:root {
  --master-green: #005c3c;
  --master-beige: #fff2e3;
  --master-orange: #f24405;

  --light-green: #dff2e9;
  --light-grey: #f2f2f2;

  --dark-light-green: #d2d9c7;
  --dark-beige: #f2e4d8;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolagegrotesque-bold.woff2") format("woff2"),
    url("../fonts/bricolagegrotesque-bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolagegrotesque-extrabold.woff2") format("woff2"),
    url("../fonts/bricolagegrotesque-extrabold.woff") format("woff");
  font-weight: 800;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolagegrotesque-regular.woff2") format("woff2"),
    url("../fonts/bricolagegrotesque-regular.woff") format("woff");
  font-weight: 400;
}

:focus,
a:focus,
button:focus {
  outline: 2px solid var(--master-orange);
  outline-offset: 1rem;
}
h1,
h2,
h3 {
  font-family: "Bricolage Grotesque Bold", sans-serif;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.65em;
}

a {
  color: currentColor;
}
/* Remove focus for mouse users fonction expérimentale*/
:focus:not(:focus-visible) {
  outline: none !important;
}

::-moz-selection {
  color: var(--master-beige);
  background-color: var(--master-orange);
}

::selection {
  color: var(--master-beige);
  background-color: var(--master-orange);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  color: var(--master-green);
  background: linear-gradient(245deg, #dff2e9 1.1%, #fffbf7 64.78%) no-repeat
    top;
  background-size: 100% auto; /* occupe 40% de la hauteur */
}

.container {
  width: 80%;
  margin: 0px auto;
}
/* Mobile portrait */
@media (max-width: 767px) {
  .container {
    width: 100%;
    margin: 0px auto;
    padding: 0px 16px;
  }
}

/* Tablettes portrait */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 100%;
    margin: 0px auto;
    padding: 0px 16px;
  }
}

/* Tablettes paysage / petits laptops */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container {
    width: 100%;
    margin: 0px auto;
    padding: 0px 16px;
  }
}

/* Desktop standard */
@media (min-width: 1280px) and (max-width: 1535px) {
  .container {
    width: 90%;
    margin: 0px auto;
    padding: 0px 16px;
  }
}

.content-page a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.content-page a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  bottom: -2px;
  transform: translateY(-7px);
  background-color: var(--master-green);
}
.content-page a:hover::before {
  height: 4px;
  transform: translateY(-4px);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.content-page a[target="_blank"]::after {
  content: "↗";
  margin-left: 0.25em;
  font-size: 1.4em;
  vertical-align: middle;
}
.content-page {
  padding-bottom: 124px;
}

/*************Evitement**********/
#evitement {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

#evitement a {
  position: absolute;
  z-index: 100000;
  left: -999999px;
}

#evitement a:focus {
  position: static;
  left: 0px;
  display: inline-block;
  padding: 10px;
  background-color: var(--master-beige);
  color: var(--master-green);
  border: 1px solid var(--master-green);
  font-size: 1.6rem;
  font-weight: bold;
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#backToTop:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header {
  display: grid;
  grid-template-columns: 1fr auto; /* Les deux colonnes prennent une part égale */
  grid-template-rows: auto;
  grid-template-areas: "first second";
  gap: 1rem;
  position: relative;
  padding: 2%;
}
.header-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* S'étend sur toute la largeur de sa cellule */
  grid-area: first;
  padding-right: 8rem;
}
.header-wrapper-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-area: second;
  justify-self: stretch; /* S'étend sur toute la largeur de sa cellule */
}
@media (min-width: 1421px) and (max-width: 2012px) {
  .header {
    grid-template-columns: auto auto; /* Les deux colonnes prennent une part égale */
  }
}
@media (min-width: 1023px) and (max-width: 1462px) {
  .header {
    grid-template-columns: auto auto; /* Les deux colonnes prennent une part égale */
  }
  .header-nav-menu > li > button,
  .header-nav-menu > li > a {
    font-size: 1.8rem !important;
    line-height: normal;
  }
}
/* Mobile (par exemple, smartphones) */
@media only screen and (max-width: 1024px) {
  .header {
    grid-template-columns: 1fr; /* Une seule colonne en mobile */
    grid-template-rows: auto auto;
    grid-template-areas:
      "second"
      "first"; /* Inversion des rangées */
  }

  .header-nav-menu > li > button,
  .header-nav-menu > li > a {
    font-size: 1.8rem !important;
    line-height: normal;
  }
  .header-nav-menu {
    gap: 4px;
  }
  .header-wrapper-tools {
    grid-template-columns: 1fr auto;
    justify-content: end;
    gap: 2rem;
  }
  .header-cta-links {
    justify-self: end;
  }
}

.header-nav-logo {
  flex: 0 0 auto;
  padding: 8px 16px;
}
.header-nav-logo a {
  display: block;
}

.header-nav-logo a svg {
  fill: var(--master-green);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-nav-logo a:hover svg,
.header-nav-logo a:focus svg {
  fill: var(--master-orange);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* Base du menu */
.header-nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

/* Boutons principaux */
.header-nav-menu > li > button,
.header-nav-menu > li > a {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6em 1.2em;
  color: var(--master-green);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-nav-menu > li > button:hover,
.header-nav-menu > li > a:hover,
.header-nav-menu > li > button:focus,
.header-nav-menu > li > a:focus,
.header-nav-menu > li.current-menu-parent > button,
.header-nav-menu > li.current-menu-parent > a,
.header-nav-menu > li.current-menu-item > button,
.header-nav-menu > li.current-menu-item > a,
.header-nav-menu > li.current-page-ancestor > button,
.header-nav-menu > li.current-page-ancestor > a {
  color: var(--master-orange);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-nav-menu > li > button::before,
.header-nav-menu > li > a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -2px;
  background: var(--master-orange);
  height: 3px;
  width: 30%;
  -webkit-transform: translateX(-50%) translateY(3px);
  transform: translateX(-50%) translateY(3px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.header-nav-menu > li > button:hover::before,
.header-nav-menu > li > button:focus::before,
.header-nav-menu > li > button:active::before,
.header-nav-menu > li > a:hover::before,
.header-nav-menu > li > a:focus::before,
.header-nav-menu > li > a:active:before,
.header-nav-menu > li.current-menu-parent > button::before,
.header-nav-menu > li.current-menu-parent > a::before,
.header-nav-menu > li.current-menu-item > button::before,
.header-nav-menu > li.current-menu-item > a::before,
.header-nav-menu > li.current-page-ancestor > button::before,
.header-nav-menu > li.current-page-ancestor > a::before {
  -webkit-transform: translateX(-50%) translateY(-6px);
  transform: translateX(-50%) translateY(-6px);
}

/* Sous-menus */
.main-submenu {
  position: absolute;
  min-width: 160px;
  display: none; /* Affichage par hover/focus en desktop */
}

.main-submenu a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}

/* Affichage au survol/focus (optionnel) */
.header-nav-menu li:hover .main-submenu,
.header-nav-menu li:focus-within .main-submenu {
  display: block;
}

.main-submenu li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  font-weight: 700;
  color: var(--master-green);
}
/* Bouton "Retour" masqué en desktop */
.main-submenu li.action {
  display: none;
}
.header-nav-menu li {
  position: relative;
}
/* Pseudo-élément indiquant un sous-menu en desktop (orientation vers le bas) */
.header-nav-menu li button[aria-haspopup="menu"]::after {
  position: absolute;
  top: 40%;
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 0.9em;
  height: 0.9em;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3l3 3 3-3' stroke='%23005C3C' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
/* Au hover, la flèche pivote vers le haut */
.header-nav-menu li button[aria-haspopup="menu"]:hover::after,
.header-nav-menu li button[aria-haspopup="menu"]:focus::after,
.header-nav-menu li button[aria-haspopup="menu"][aria-expanded="true"]::after {
  transform: translateY(-25%) rotate(-90deg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3l3 3 3-3' stroke='%23F24405' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* Sous-menus en desktop apparaissent au survol */
.header-nav-menu li ul {
  position: absolute;
  top: 96%;
  left: 0px;
  color: var(--master-green);
  padding: 0.5rem 0.1rem;
  display: none;
  width: 80%;
  border-radius: 8px;
  z-index: 20;
  list-style: none;
  background-color: #ffffff;
}
/* Afficher le sous-menu au survol du li */
.header-nav-menu li:hover ul {
  display: block;
}

/* Le bouton "Retour" n'est pas visible en desktop */
.header-nav-menu li ul li.action {
  display: none;
}

.header-nav-menu li ul li a {
  font-weight: 700;
  position: relative;
  display: block;
  padding-right: 24px;
  line-height: normal;
}
.header-nav-menu li ul li a:hover {
  color: var(--master-orange);
}
.header-nav-menu li ul li a:hover::before,
.header-nav-menu li ul li a:focus::before,
.header-nav-menu li ul li.current-menu-item a::before,
.header-nav-menu li ul li.current-page-ancestor a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 9px;

  background: url(../img/point-menu.svg) center center no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.header-nav-menu-toggle {
  display: none;
  flex: 0 0 auto;
}
/* ---------- Styles spécifiques pour Mobile ---------- */
@media (max-width: 768px) {
  /* Le menu principal en mode mobile occupe tout l'écran et est caché par défaut */
  .header-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* aligne les éléments en haut */
    gap: 0; /* supprime l'espace entre eux */
    background: var(--master-green);
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
  }
  .header-nav-menu.mobile-open {
    transform: translateX(0);
    padding-top: 44px;
  }
  .header-nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--master-beige);
    position: static;
  }
  .header-nav-menu > li > button,
  .header-nav-menu > li > a {
    font-size: 1.8rem;
    width: 100%;
    text-align: left;
    padding: 1rem;
    color: var(--master-beige);
  }
  .header-nav-menu > li > button::before,
  .header-nav-menu > li > a::before {
    display: none;
  }
  .header-nav-menu li button[aria-haspopup="menu"]::after {
    top: 28%;
    transform: rotate(-90deg);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3l3 3 3-3' stroke='%23FFF2E3' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  /* Les sous-menus en mobile */
  .header-nav-menu .main-submenu {
    display: block;
    position: fixed;
    padding-top: 44px;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh !important; /* Prend toute la hauteur du viewport */
    background: var(--master-green);
    color: var(--master-beige);
    transition: transform 0.3s ease;
    z-index: 4000;
  }
  .main-submenu {
    list-style: none;
  }
  .main-submenu li a {
    font-weight: 700;
    color: var(--master-beige);
  }
  /* Par défaut, le sous-menu reste à sa position (hors écran) */
  .header-nav-menu .main-submenu:not(.active) {
    transform: translateX(0);
  }
  /* Quand un sous-menu est actif, il glisse pour occuper l'écran */
  .header-nav-menu .main-submenu.active {
    transform: translateX(-100%);
  }
  /* Lorsqu'un sous-menu est ouvert, on glisse le menu principal vers la gauche */
  .header-nav-menu.slide-out > li.main-level {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  /* Affichage du bouton "Retour" dans les sous-menus */
  .main-submenu li.action {
    display: block !important;

    padding: 1rem;
    font-size: 1.8rem;
    color: var(--master-beige);
  }
  .main-submenu li.action button {
    position: relative;
    width: 100%;
    background: none;
    border: none;
    font-size: inherit;
    color: inherit;
    padding-left: 42px;
    font-weight: 700;
    text-align: left;
  }
  .main-submenu li.action button::before {
    position: absolute;
    top: 30%;
    left: 0;
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    width: 1.1em;
    height: 1.1em;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3l3 3 3-3' stroke='%23FFF2E3' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    transform-origin: center center;
  }

  /* -------- Bouton burger accessible -------- */
  /* Affiché uniquement en mobile */
  .header-nav-menu-toggle {
    display: block;
    /* Par défaut en position relative */
    position: absolute;
    top: 20px;
    left: 20px;
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
    transition: all 0.3s ease;
  }
  /* Lorsque le menu est ouvert, on passe en position absolue en haut à gauche */
  .header-nav-menu-toggle[aria-expanded="true"] {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger,
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger::before,
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger::after {
    content: "";
    display: block;
    background-color: var(--master-beige);
    height: 3px;
    width: 100%;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  /* Stylisation du burger (les 3 lignes) */
  .header-nav-menu-toggle .hamburger,
  .header-nav-menu-toggle .hamburger::before,
  .header-nav-menu-toggle .hamburger::after {
    content: "";
    display: block;
    background-color: var(--master-green);
    height: 3px;
    width: 100%;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  /* Ligne centrale */
  .header-nav-menu-toggle .hamburger {
    position: relative;
    top: 20%;
    transform: translateY(-50%);
  }
  /* Lignes supérieure et inférieure */
  .header-nav-menu-toggle .hamburger::before,
  .header-nav-menu-toggle .hamburger::after {
    position: absolute;
    left: 0;
  }
  .header-nav-menu-toggle .hamburger::before {
    top: -8px;
  }
  .header-nav-menu-toggle .hamburger::after {
    top: 8px;
  }
  /* Transformation en croix quand le menu est ouvert */
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
  }
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
  }
  .header-nav-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-nav-logo {
    width: 100%;
    text-align: center;
  }
}

.header-tools {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: right;
}
.header-tools li {
  margin-right: 16px;
}
.header-tools li a {
  color: var(--master-green);
  font-family: 1.6rem;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
.header-tools li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--master-green);
  height: 2px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-tools li a:hover::before,
.header-tools li a:focus::before,
.header-tools li a:active::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-tools li.bt-search a::before {
  display: none;
}
.header-tools li.bt-search a {
  padding-top: 6px;
}
.header-tools li.bt-search a svg {
  fill: var(--master-green);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-tools li.bt-search a:hover svg,
.header-tools li.bt-search a:focus svg {
  transform: rotate(90deg);
  transform-origin: center center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-tools li.bt-search a svg {
  stroke: var(--master-green);
}
.bt-search {
  position: relative;
}

.header-search {
  display: none;
  position: absolute;
  top: 100%; /* Juste en dessous du bouton */
  right: 0;
  padding: 10px;
  z-index: 100;
  width: 250px;
  max-width: calc(100vw - 20px);
}

/* Classe pour afficher le formulaire au clic */
.header-search.visible {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Styles internes du formulaire */
.header-search .search-field {
  flex: 1;
  padding: 5px;
  border: 1px solid var(--master-green);
  border-radius: 3px;
}

.header-search .search-submit {
  padding: 5px 10px;
  border: none;
  background: var(--master-orange);
  color: var(--master-beige);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}

.header-search .close-search {
  background-color: var(--master-orange);
  color: var(--master-beige);
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**********/
.footer {
  background-color: var(--master-green);
  color: var(--master-beige);
  padding: 16px 32px 16px 32px;
}
.wrapper-footer {
  display: grid;
  grid-template-columns: 23% 77%;
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
@media (max-width: 780px) {
  .wrapper-footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .bottom-right-footer {
    text-align: center !important;
  }
  .bottom-right-footer ul {
    list-style: none;
    width: 100%;
    margin: 124px 0px 16px 16px;
  }
}

.left-footer {
  text-align: center;
  justify-self: center;
  align-self: center;
}
.left-footer ul {
  list-style: none;

  padding-top: 16px;
  margin: 32px auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.left-footer ul li a svg {
  position: relative;
  top: 0px;
  fill: var(--master-beige);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.left-footer ul li a:hover svg,
.left-footer ul li a:focus svg {
  fill: var(--master-orange);
  top: 3px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.left-footer ul li.bt-linkedin a svg {
  stroke: 3px var(--master-beige);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.left-footer ul li.bt-linkedin a:hover svg,
.left-footer ul li.bt-linkedin a:focus svg {
  stroke: 3px var(--master-orange);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer-titre {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 32px 0px 0px 0px;
}
.top-right-footer {
  display: flex;
  gap: 8rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 32px;
}
@media (max-width: 780px) {
  .top-right-footer {
    justify-content: center;
  }
}
.top-right-footer a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--master-beige);
  font-size: 2rem;
}
.top-right-footer a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--master-beige);
  color: var(--master-beige);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.top-right-footer a:hover::before,
.top-right-footer a:focus::before {
  content: "";
  position: absolute;

  width: 30%;
  height: 4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.top-right-footer .column-right a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/fle-right-ext.svg) center center no-repeat;
  top: 10px;
  right: -32px;
}
.bottom-right-footer {
  text-align: right;
}
.bottom-right-footer ul {
  list-style: none;
  margin: 124px 124px 16px 16px;
}
.bottom-right-footer ul li {
  display: inline-block;
  margin-left: 16px;
}

.bottom-right-footer ul li a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  color: var(--master-beige);
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
.bottom-right-footer ul li.eco a {
  color: #ffc9b5;
}
.bottom-right-footer ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--master-beige);
  height: 2px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bottom-right-footer ul li.eco a::before {
  background: #ffc9b5;
}
.bottom-right-footer ul li a:hover::before,
.bottom-right-footer ul li a:focus::before,
.bottom-right-footer ul li a:active::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hero-home-content {
  position: relative;
  background: url(../img/txt-hero-manifesto.svg) center center no-repeat;
  background-size: 70%;
  min-height: 500px;
}

/* Conteneur plein écran ou hauteur fixe */
#word-cloud {
  position: relative;
  width: 100%;
  height: 500px;
  padding: 20px; /* marge intérieure */
  box-sizing: border-box;
  overflow: hidden;
}

/* Chaque mot est positionné absolument et animé en opacity */
.word {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  font-size: 1.6rem;
  -webkit-animation: fade 4s ease-in-out forwards;
  animation: fade 4s ease-in-out forwards;
}
.word strong {
  font-size: 2.4rem;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.bloc-manifesto {
  width: 570px;
  margin: 3rem auto;
}
@media (max-width: 600px) {
  .bloc-manifesto {
    width: 100%;
  }
}
.bloc-manifesto h2 {
  font-size: 4.8rem;
  font-weight: 700;
}
.bloc-manifesto p {
  font-size: 2rem;
  margin: 2px 0px 64px 0px;
  line-height: 1.3;
}

.bloc-video-home {
  max-width: 445px;
  max-height: 222px;
  margin: 124px auto 0px auto;
  position: relative;
}
.btn-video-toggle {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 242, 227, 0.85);
  color: var(--master-green);
  border-radius: 16px;
  border: none;

  font-size: 2rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  z-index: 2;
}

.bloc-video-home:hover .btn-video-toggle {
  display: block;
}
.video-sun {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: ellipse(50% 100% at 50% 100%);
  -webkit-clip-path: ellipse(50% 100% at 50% 100%);
}

.faire-home {
  background-color: var(--master-green);
  color: var(--master-beige);
  margin-top: 28px;
  min-height: 300px;
  padding-top: 8px;
}
.frise-faire-home {
  width: 100%;
  height: 27px;
  background: url(../img/faire-frise.svg) 0 0 repeat-x;
}
.faire-home-container {
  margin: 128px 15% 0px 15%;
}
@media (max-width: 1411px) {
  .faire-home-container {
    margin: 128px 8% 0px 8%;
  }
}
.faire-p-home {
  margin-right: 20%;
  font-size: 2rem;
  line-height: 1.3;
}
.faire-home h2 {
  display: inline-block;
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
}
.faire-home h2::after {
  content: "";
  position: absolute;
  bottom: 10px;
  transform: translateX(17px);
  width: 17px;
  height: 15px;
  background: url(../img/dot-beige-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
}

.list-faire {
  margin-top: 64px;
}
.list-faire ul {
  list-style: none;
  margin: 64px 0px;
}
.list-faire ul li a {
  display: block;
  position: relative;
  padding-left: 24px;
  font-size: 2rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.list-faire ul li a:hover,
.list-faire ul li a:focus {
  padding-left: 38px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.list-faire ul li a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  top: 14px;
  left: 0px;
  background: url(../img/fle-right-beige-bold.svg) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.list-faire ul li a:hover::before {
  left: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.faire-home-container .wp-block-columns {
  margin-bottom: 0em;
}
.list-petit {
  display: block;
  line-height: 1.2;
  font-size: 1.8rem;
}

.section-bene {
  background-color: #fff;
  padding: 124px 0px 224px 0px;
  font-size: 2rem;
}
.section-bene-container {
  margin: 0px 15% 0px 15%;
}
@media (max-width: 1685px) {
  .section-bene-container {
    margin: 0px 4% 0px 4%;
  }
}

.section-bene h2 {
  position: relative;

  font-size: 6.4rem;
  font-weight: 700;
  width: 70%;
  line-height: normal;
}
.section-bene h2::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  background: url(../img/dot-green-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 14px;
  transform: translateX(17px);
}

.heart-column {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.section-bene .heart {
  position: sticky;
  top: 2rem;
  flex: 1;

  padding: 8rem 1rem;
  border-radius: 8px;
  height: fit-content;
}

.section-bene .heart img {
  display: inline-block;
  backface-visibility: hidden;
}

.section-bene .heart img:hover {
  animation: heartbeat 2s ease-in-out infinite both;
  -webkit-animation: heartbeat 2s ease-in-out infinite both;
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.25);
  }
  14% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.25);
  }
  28% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.25);
  }
  14% {
    -webkit-transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.25);
  }
  28% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

.intro-interviews {
  margin: 16px 0px 32px 0px;
  padding-right: 35%;
  font-size: 1.8rem;
}
.accroche-itw {
  font-size: 3.2rem;
  font-weight: 700;

  line-height: 1.4;
}

.intro-ensemble {
  margin: 16px 0px 32px 0px;
  padding-right: 35%;
  font-size: 1.8rem;
}
.accroche-ensemble-page {
  font-size: 3.2rem;
  font-weight: 700;

  line-height: 1.4;
}

.sf-interviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  margin: 4rem 0;
}

@media screen and (max-width: 768px) {
  .sf-interviews-grid {
    grid-template-columns: 1fr;
  }
  .intro-interviews,
  .intro-ensemble {
    padding-right: 1%;
  }
}

.sf-interviews-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
  margin: 4rem 0 10rem 0;
  padding-right: 30%;
}

@media screen and (max-width: 768px) {
  .sf-interviews-archive-grid {
    grid-template-columns: 1fr;
    padding-right: 1%;
  }
}

.sf-interview-item {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.sf-interview-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/plus.svg) center center no-repeat;
  right: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sf-interview-item:hover::after {
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sf-interview-thumb {
  width: 70%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: auto;
}

.sf-interview-item {
  text-decoration: none;
}
.sf-interview-item h3 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 32px 0px 8px 0px;
  padding-right: 32px;
  line-height: normal;
}
@media (max-width: 1260px) {
  .sf-interview-item h3 {
    font-size: 2.6rem;
  }
  .sf-interviews-grid {
    gap: 4rem;
    padding-right: 4%;
  }
}
.sf-interview-item:hover h3,
.sf-interview-item:focus h3 {
  color: var(--master-orange);
}
.sf-interview-item p {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 24px 0;
  padding-right: 16px;
}
.sf-interview-item .bloc-img {
  overflow: hidden;
  text-align: center;
  background: var(--master-green) url(../img/fond-beige-bene.svg) center bottom
    no-repeat;
  background-size: 70% auto;
  padding-top: 4rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sf-interview-item:hover .bloc-img,
.sf-interview-item:focus .bloc-img {
  background: var(--master-orange) url(../img/fond-beige-bene.svg) center bottom
    no-repeat;
  background-size: 70% auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sf-interview-item .bloc-img img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sf-interview-item:hover .bloc-img img,
.sf-interview-item:focus .bloc-img img {
  transform: scale(1.2);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav-links {
  font-size: 2rem;
  display: flex;
  display: flex;

  align-items: center;
  gap: 8px;
  margin-bottom: 124px;
}
.nav-links a {
  display: block;
  color: var(--master-beige);
  background-color: var(--master-orange);
  text-decoration: none;
  font-weight: 700;
  width: 60px;
  height: 60px;
  padding: 10px 8px 8px 8px;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.nav-links a:hover,
.nav-links a:focus {
  background-color: var(--master-green);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.nav-links a.next,
.nav-links a.prev {
  width: auto !important;
  padding: 10px 8px 8px 8px;
}
.nav-links span {
  display: inline-block;
  color: var(--master-green);
  text-align: center;
  text-decoration: none;
  font-weight: 700;

  width: 60px;
  height: 60px;
  padding: 8px;
}

a.cta-content {
  position: relative;
  display: inline-block;
  color: var(--master-orange);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
a.cta-content.cta-orange {
  color: var(--master-orange);
}
a.cta-content.cta-green {
  color: var(--master-green);
}
a.cta-content.cta-beige {
  color: var(--master-beige);
}
a.cta-content::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 70%;
  will-change: transform;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.cta-content.cta-orange::before {
  background-color: var(--master-orange);
}
a.cta-content.cta-green::before {
  background-color: var(--master-green);
}
a.cta-content.cta-beige::before {
  background-color: var(--master-beige);
}
a.cta-content::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  top: 50%;
  right: -64px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.cta-content.cta-orange::after {
  background-color: var(--master-orange);
  background-image: url("../img/fle-right-beige.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
}
a.cta-content.cta-green::after {
  background-color: var(--master-green);
  background-image: url("../img/fle-right-beige.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
}
a.cta-content.cta-beige::after {
  background-color: var(--master-beige);
  background-image: url("../img/fle-right-orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
}
a.cta-content:hover::after,
a.cta-content:focus::after {
  right: -84px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.cta-content:hover::before,
a.cta-content:focus::before {
  width: 80%;
  height: 4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.pre-mecene {
  background-color: #fff;
  padding: 0px 0px 96px 0px;
  text-align: center;
  font-size: 5.6rem;
  line-height: 1.4;
}

.section-mecenes {
  background: var(--master-green) url(../img/motifaire.svg) left bottom repeat-x;
  color: var(--master-beige);
  padding: 124px 0px 524px 0px;
  font-size: 2rem;
}

.section-mecenes-container {
  margin: 0px 15% 0px 15%;
}
@media (max-width: 1200px) {
  .section-mecenes-container {
    margin: 0px 4% 0px 4%;
  }
}
.section-mecenes h2 {
  position: relative;
  font-size: 6.4rem;
  font-weight: 700;
  width: 70%;
  line-height: normal;
}
.section-mecenes h2::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  background: url(../img/dot-beige-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 14px;
  transform: translateX(17px);
}
.accroche-mecene {
  font-size: 3.2rem;
  font-weight: 700;
  padding-right: 5%;
  line-height: 1.4;
  padding-right: 30%;
}
.desc-mecene {
  font-size: 2rem;
  line-height: 1.5;
  margin: 32px 0;
  padding-right: 30%;
}
@media (max-width: 780px) {
  .accroche-mecene {
    padding-right: 1%;
  }
  .desc-mecene {
    padding-right: 1%;
  }
}

.drop-column {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.section-mecenes .drop {
  position: sticky;
  top: 2rem;
  flex: 1;
  text-align: center;
  padding: 8rem 1rem;
  border-radius: 8px;
  height: fit-content;
}

.section-mecenes .drop img {
  display: inline-block;
  backface-visibility: hidden;
}
.drop img:hover {
  animation: squish 0.4s ease forwards;
}

@keyframes squish {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2, 0.8);
  }
  100% {
    transform: scale(1);
  }
}

.section-ensemble {
  background-color: #ffffff;
  color: var(--master-green);
  padding: 124px 0px 224px 0px;
  font-size: 2rem;
}

.section-ensemble-container {
  margin: 0px 15% 0px 15%;
}
@media (max-width: 1280px) {
  .section-ensemble-container {
    margin: 0px 4% 0px 4%;
  }
}

.section-ensemble h2 {
  position: relative;

  font-size: 6.4rem;
  font-weight: 700;
  width: 70%;
  line-height: normal;
}
.section-ensemble h2::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  background: url(../img/dot-green-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 14px;
  transform: translateX(17px);
}
.accroche-ensemble {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  padding-right: 30%;
}
.desc-ensemble {
  padding-right: 30%;
  line-height: 1.4;
}
@media (max-width: 780px) {
  .accroche-ensemble,
  .desc-ensemble {
    padding-right: 1%;
  }
}

.flower-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.flower-column .flower {
  position: sticky;
  top: 8rem;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 8px;
  height: fit-content;
  display: flex;
  justify-content: center;
}

.section-mecenes .flower img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.flower-column,
.section-mecenes,
.section-mecenes > * {
  overflow: visible; /* pas hidden/auto */
}
.flower-column .flower {
  transition: transform 0.4s ease;
  z-index: 2;
}
.flower-column .flower:hover {
  transform: scale(1.2);
}
.flower-column .flower::before,
.flower-column .flower::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/fleur.avif");
  background-size: cover;
  width: 124px;
  height: 137px;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center center;
}
.flower-column .flower:hover::before {
  transform: translate(-220px, 20px) scale(0.8) rotate(-180deg);
  opacity: 0.6;
  transform-origin: center center;
}
.flower-column .flower:hover::after {
  transform: translate(320px, 200px) scale(1.3) rotate(180deg);
  opacity: 0.6;
  transform-origin: center center;
}

.latest-posts {
  list-style: none;
  margin: 32px 0px;
}
.latest-posts li {
  margin-bottom: 6px;
}
.latest-posts li a {
  position: relative;
  font-size: 2rem;
  text-decoration: none;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latest-posts li a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  background: url(../img/fle-right-green.svg) center center no-repeat;
  background-size: 100% auto;
  top: 4px;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latest-posts li a:hover,
.latest-posts li a:focus {
  padding-left: 56px;
  color: var(--master-orange);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latest-posts li a:hover::before,
.latest-posts li a:focus::before {
  background: url(../img/fle-right-orange-ensemble.svg) center center no-repeat;
  background-size: 100% auto;
  left: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latest-posts li a span.highlight {
  font-weight: 700;
}

.header-secondaire h1 {
  font-size: 6rem;
}
.header-secondaire h1 {
  position: relative;

  font-size: 6.4rem;
  font-weight: 700;
  width: 70%;
  line-height: normal;
}
.header-secondaire h1::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  background: url(../img/dot-green-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 14px;
  transform: translateX(17px);
}
.breadcrumb ul {
  list-style: none;
  margin: 16px 0px 8px 0px;
  padding: 0;
}
.breadcrumb ul li {
  display: inline-block;
  margin-right: 32px;
  position: relative;
}

.breadcrumb li + li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 10px;
  background: url(../img/chevron-ariane.svg) center center no-repeat;
  background-size: 100% auto;
  left: -16px;
  top: 10px;
}
.breadcrumb ul li a {
  color: var(--master-green);
  font-family: 1.6rem;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
.breadcrumb ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--master-green);
  height: 2px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.breadcrumb ul li a:hover::before,
.breadcrumb ul li a:focus::before,
.breadcrumb ul li a:active::before {
  height: 4px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.accroche-manifesto {
  font-size: 4.2rem;
  font-weight: 700;
}
.page-bloc-manifesto {
  padding-right: 10%;
}
@media (max-width: 780px) {
  .page-bloc-manifesto {
    padding-right: 0%;
  }
}

.img-content img {
  -webkit-border-top-left-radius: 64px;
  -webkit-border-top-right-radius: 64px;

  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}
.img-content {
  position: relative;
}
.img-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 44px;
  background-color: var(--master-orange);
  left: 0px;
  bottom: -44px;
  -webkit-border-bottom-right-radius: 64px;
  -webkit-border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  border-bottom-left-radius: 64px;
}

.continue-reading {
  position: relative;
  padding: 16px;
  -webkit-border-top-right-radius: 64px;
  -webkit-border-bottom-right-radius: 64px;
  border-top-right-radius: 64px;
  border-bottom-right-radius: 64px;
  background: var(--master-green);
  color: var(--master-beige);
}
.continue-single {
  width: 50%;
  margin: 124px 0px;
}
@media (max-width: 780px) {
  .continue-single {
    width: 96%;
    margin: 68px 0px;
  }
}
.continue-reading h2::before {
  display: none;
}
.continue-reading h2 {
  display: inline-block;
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 16px !important;
}
.continue-reading h2::after {
  content: "";
  position: absolute;
  bottom: 7px;
  transform: translateX(17px);
  width: 17px;
  height: 15px;
  background: url(../img/dot-beige-h2.svg) 0 0 no-repeat;
  background-size: 100% auto;
}
.continue-reading ul {
  list-style: none;
  margin: 16px 0px;
}
.continue-reading ul li a {
  display: block;
  position: relative;
  padding-left: 24px;
  font-size: 2rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.continue-reading ul li a:hover,
.continue-reading ul li a:focus {
  padding-left: 38px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.continue-reading ul li a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  top: 14px !important;
  left: 0px;
  transform: translateY(0px);
  background: url(../img/fle-right-beige-bold.svg) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.continue-reading ul li a:hover::before {
  top: 14px;
  left: 16px;
  height: 10px;
  transform: translateY(0px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.content-page-accroche {
  font-size: 4.2rem;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 32px;
}
.content-page-left-column {
  padding-right: 15%;
}
@media (max-width: 1280px) {
  .content-page-left-column {
    padding-right: 0%;
  }
}
.content-page ul {
  padding: 16px;
}

.content-page h2 {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  line-height: normal;
  margin: 64px 0px 32px 0px;
  padding-left: 38px;
}
.content-page h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--master-green);
}

.content-page h3 {
  position: relative;
  display: inline-block;
  font-size: 2.4rem;
  line-height: normal;
  margin: 16px 0px;
}
.has-large-font-size {
  line-height: normal !important;
  margin-bottom: 16px;
}

.sf-interviews-archive .latest-posts {
  margin: 32px 0px 68px 0px;
}
.sf-interviews-archive {
  padding-bottom: 128px;
}

.content-page.search-page a::before {
  bottom: -10px;
}
.btn-stop-animation {
  margin-top: 1rem;
  padding: 0.5em 1em;
  font-size: 1.4rem;
  color: var(--master-green);
  cursor: pointer;
  border: 0px;
  background: transparent;
  display: block;
  margin-left: auto;
}

.error-404-container svg {
  margin-bottom: 64px;
}
.error-404-container .cta-content {
  margin: 32px 0px;
}

.search-form-wrapper {
  margin: 32px 0px;
}
.error-404-container input[type="submit"] {
  padding: 5px 10px;
  border: none;
  background: var(--master-orange);
  color: var(--master-beige);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}
