@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "StudioFeixenSerif";
  src: url("../fonts/StudioFeixenSerif-Bold.woff2") format("woff2"), url("../fonts/StudioFeixenSerif-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "StudioFeixenSerif";
  src: url("../fonts/StudioFeixenSerif-Book.woff2") format("woff2"), url("../fonts/StudioFeixenSerif-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --pico-block-spacing-vertical: 0;
}

:root {
  --regularsz: 16px;
  --color: #5497da;
  --red: #b85d5c;
}

body {
  transition: background-color 0.8s linear;
  font-family: "StudioFeixenSerif", serif;
  font-size: 15px;
  width: 100%;
  overflow-x: hidden;
}
body .content {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.row {
  display: flex;
  width: 100%;
}

.col {
  padding-left: 20px;
  padding-right: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
.content {
  position: relative;
}

@media screen and (max-width: 768px), (orientation: portrait) {
  body {
    font-size: 16px;
    line-height: 1.2em;
  }
}
.site-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 50px;
  padding-bottom: 10px;
  box-sizing: border-box;
  font-size: 21px;
  font-weight: bold;
  padding-top: 4vh;
  z-index: 10000;
  position: absolute;
  top: 0;
  right: 0;
}

.nom {
  font-size: 12px;
  font-weight: bold;
}

.site-logo svg {
  width: 100%;
  margin-top: -12px;
  height: auto;
  max-width: 160px;
  fill: var(--color);
}

.site-nav ul,
.social-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  padding: 0;
}

.social-links {
  margin-left: 1rem;
}

.menu-inner {
  display: flex;
  align-items: center;
}
.menu-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background-color: var(--color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menu-inner a:hover::after, .menu-inner a.active::after {
  transform: scaleX(1);
}
.menu-inner .travaux-item > a svg path {
  transition: all 0.3s ease;
  stroke: var(--color);
  stroke-width: 1;
  fill: none;
  transition: stroke-width 0.3s ease;
}
.menu-inner .travaux-item > a:after {
  display: none;
}
.menu-inner .travaux-item > a:hover svg path {
  stroke-width: 2;
}

.social-links a:after {
  display: none;
}

.social-links a svg {
  transition: all 0.3s ease;
}
.social-links a:hover svg {
  fill: #5497da;
}

.articles .social-links a svg, .article .social-links a svg {
  transition: all 0.3s ease;
}
.articles .social-links a:hover svg, .article .social-links a:hover svg {
  fill: var(--red);
}
.articles .site-logo svg, .article .site-logo svg {
  transition: all 0.3s ease;
}
.articles .site-logo:hover svg, .article .site-logo:hover svg {
  fill: var(--red);
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav ul .menu-item {
  position: relative;
}
.site-nav ul .menu-item .submenu {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 5px;
  padding-right: 0px;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.site-nav ul .menu-item .submenu .submenu-item {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: right;
  font-size: 0.9em;
  font-weight: normal;
}
.site-nav ul .menu-item .submenu .submenu-item a {
  display: inline-block;
  width: auto;
  position: relative;
}
.site-nav ul .menu-item .submenu .submenu-item a:after {
  bottom: -2px;
}
.site-nav ul .menu-item .submenu .submenu-item:nth-child(1) {
  transition-delay: 0.05s;
}
.site-nav ul .menu-item .submenu .submenu-item:nth-child(2) {
  transition-delay: 0.1s;
}
.site-nav ul .menu-item .submenu .submenu-item:nth-child(3) {
  transition-delay: 0.15s;
}
.site-nav ul .menu-item .submenu .submenu-item:nth-child(4) {
  transition-delay: 0.2s;
}
.site-nav ul .menu-item .submenu .submenu-item:nth-child(5) {
  transition-delay: 0.25s;
}
.site-nav ul .menu-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav ul .menu-item:hover .submenu .submenu-item {
  opacity: 1;
  transform: translateX(0);
}

.menu-item svg {
  height: 29px;
  width: auto;
  stroke-width: 1px;
}

.burger {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu-inner,
  .social-links {
    display: none;
  }
  .burger {
    position: static;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .burger span {
    height: 2px;
    width: 100%;
    background-color: var(--color, black);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(239, 236, 234, 0.9294117647);
    z-index: 10500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    /* évite les clics avant animation */
  }
  .mobile-menu.visible {
    pointer-events: auto;
  }
  .mobile-menu ul {
    list-style: none;
    width: 100%;
  }
  .mobile-menu-item {
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
  }
  .mobile-menu-item a {
    font-size: 1.3rem;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
  }
  .submenu-toggle {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: inherit;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 2px;
    text-transform: none;
  }
  .submenu-toggle .chevron {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 0.4rem;
  }
  .submenu-toggle[aria-expanded=true] .chevron {
    transform: save;
  }
  .chevron-icon {
    transition: transform 0.3s ease;
  }
  .mobile-submenu li {
    margin-top: 0.4rem;
    text-transform: uppercase;
  }
  .mobile-submenu li a {
    font-size: 1rem;
    font-weight: bold;
    text-transform: none;
  }
  .mobile-submenu.open {
    display: block;
  }
  body.menu-open {
    overflow: hidden;
  }
  .mobile-menu[hidden] {
    display: none !important;
  }
  .nom {
    display: none;
  }
  .col.col.col-sidebar.article-logo {
    position: relative;
    width: auto;
    height: auto;
    top: 15px;
  }
  .site-logo svg {
    width: 70px;
    height: auto;
  }
  h1 {
    width: 100%;
    height: auto;
    font-size: var(--fonth1);
    margin-top: 30px;
    margin-bottom: 30px;
    z-index: 10;
    padding: 0px;
    position: static;
    text-align: center;
  }
  #prehome {
    z-index: 100000;
  }
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 10px;
  }
  .mobile-submenu {
    display: none;
    margin-top: 1em;
    margin-bottom: 1.5em;
  }
  .item-holder {
    display: flex;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block;
  }
  .mobile-menu ul {
    list-style: none;
    width: auto;
  }
  .submenu-toggle[aria-expanded=true] .chevron-icon {
    transform: rotate(180deg);
  }
}
.home {
  --color: #b85d5c;
  background-color: #efecea;
  color: #b85d5c;
}
.home svg, .home svg .cls-1 {
  fill: #b85d5c;
}

#prehome {
  height: 100dvh;
  width: 100%;
  position: relative;
}

.prehome-logo {
  left: 51px;
  top: 40px;
  position: absolute;
  width: 15%;
}
.prehome-logo svg {
  width: 100%;
  height: auto;
  fill: white;
}

.prehome-nom {
  position: absolute;
  top: 40px;
  right: 50px;
  text-align: right;
  font-size: 30px;
  color: white;
}

.prehome-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.prehome-backgrounds .background-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.prehome-backgrounds img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.prehome-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.prehome-arrow svg {
  height: 44px;
  width: auto;
  fill: white;
}
.prehome-arrow svg .cls-1 {
  fill: white;
}

.prehome-cartouches {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.prehome-cartouches .cartouche-holder {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 50%;
}
.prehome-cartouches .cartouche-holder svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  fill: white;
}

.prehome-backgrounds .background-item,
.prehome-cartouches .cartouche-holder {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.prehome-backgrounds .background-item.active,
.prehome-cartouches .cartouche-holder.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.travaux-list.hidden {
  display: none;
}

.content {
  min-height: 100vh;
}
.content .site-header {
  position: sticky;
  right: 0;
  top: 0;
}
.content .travaux-selections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  height: calc(100vh - 94px);
  margin: 0 auto;
  width: 75%;
}
.content .travaux-selections ul {
  list-style-type: none;
}
.content .travaux-selections .row {
  width: 100%;
}
.content .travaux-selections .col {
  flex: 1;
  padding: 2%;
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: calc(150px + 1.5em);
}
.content .travaux-selections .col a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
}
.content .travaux-selections .col a h2 {
  color: #b85d5c;
  margin-top: 30px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.content .travaux-selections .col:hover h2 {
  color: #5497da;
}
.content .travaux-selections .col:hover svg,
.content .travaux-selections .col:hover svg .cls-1 {
  fill: #5497da;
}
.content .travaux-selections .col svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: auto;
  transition: all 0.3s ease-in-out;
}

#home .row-header {
  top: 4vh;
}

#home .row-header .article-logo {
  position: sticky;
}

.travaux {
  background-color: #efecea;
  color: #b85d5c;
}
.travaux svg,
.travaux svg .cls-1 {
  fill: #b85d5c;
}
.travaux .row-content {
  padding-top: 0;
}
.travaux .content .travaux-selections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  height: 100vh;
  margin: 0 auto;
  width: 75%;
  padding-top: 50px;
}

.content .travaux .travaux-list {
  position: relative;
  text-align: center;
  width: 150%;
  transform: translateX(-16%);
  margin-top: 0;
  list-style: none;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 1.5em;
  min-height: 150px;
  color: #5497da;
}
.content .travaux .travaux-list li {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 0.3rem;
}
.content .travaux .travaux-list li a:hover {
  text-decoration: underline;
}
.content .travaux .travaux-list li .subtitle {
  font-size: 0.7em;
  font-style: italic;
}
.content .travaux .travaux-list li a {
  display: flex;
  flex-direction: row;
  align-content: baseline;
}
.content .travaux .travaux-list li a .subtitle {
  margin-left: 0.5em;
}

.cartouche {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cartouche:hover .travaux-list {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px), (orientation: portrait) {
  .prehome-logo {
    left: 15px;
    top: 15px;
    position: absolute;
    width: 25%;
  }
  .prehome-nom {
    position: absolute;
    top: 13vw;
    right: 15px;
    text-align: right;
    font-size: 21px;
    color: white;
  }
  .prehome-arrow {
    bottom: 10px;
  }
  .travaux-selections {
    width: 100%;
  }
  .travaux-list {
    width: 100%;
    transform: translateX(0);
  }
  .prehome-arrow svg {
    height: 44px;
    width: auto;
  }
  .content .travaux-selections {
    width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
    height: auto;
    margin-top: 0;
  }
  .content .travaux-selections .row {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .content .travaux-selections .col {
    flex: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    height: auto;
    padding-top: 0;
    width: 50%;
    flex-basis: 50%;
    margin-bottom: 40px;
  }
  .content .travaux-selections .col .cartouche {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .content .travaux-selections .col .cartouche a {
    flex-basis: 10%;
  }
  .content .travaux-selections .col .cartouche .travaux {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #b85d5c;
    flex-basis: 10%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 1.5em;
    text-align: center;
  }
  .content .travaux-selections .col .cartouche .travaux .cat-mobile {
    color: #b85d5c;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  .content .travaux-selections .col .cartouche .travaux-list {
    display: none;
  }
  .content .travaux-selections .col svg {
    width: 95%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    height: auto;
    transition: all 0.3s ease-in-out;
  }
  .home .site-header {
    padding: 15px;
    padding-bottom: 10px;
  }
  .home .burger {
    top: 0;
    left: 0;
    position: static;
  }
  #prehome .prehome-arrow svg {
    height: 30px;
    width: auto;
  }
}
.articles,
.article,
.agenda {
  --color: #5497da;
  background-color: #efecea;
  color: var(--color);
  min-height: 100dvh;
}
.articles svg,
.articles svg .cls-1,
.article svg,
.article svg .cls-1,
.agenda svg,
.agenda svg .cls-1 {
  fill: var(--color);
}

.article-layout .row {
  height: auto;
}
.article-layout .col {
  height: 100%;
  box-sizing: border-box;
  padding-left: 6%;
  padding-right: 6%;
}
.article-layout h1 {
  color: inherit;
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 30px;
}
.article-layout h2,
.article-layout h3,
.article-layout h4,
.article-layout h5,
.article-layout h6 {
  color: inherit;
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.article-layout ul + h3,
.article-layout ul + h2 {
  margin-top: 1.5em;
}
.article-layout p + h3,
.article-layout p + h2 {
  margin-top: 1.5em;
}
.article-layout p {
  font-weight: normal;
}
.article-layout ul li p {
  text-indent: 0;
}
.article-layout p + p {
  margin-top: 1.5em;
  text-indent: 0;
}
.article-layout p + ul {
  margin-top: 1.5em;
  text-indent: 0;
}
.article-layout a {
  transition: all 0.3s ease;
}
.article-layout ul li p + p {
  margin-top: 0;
}
.article-layout a:hover {
  color: var(--red);
}
.article-layout p strong,
.article-layout ul strong {
  font-weight: bold;
}
.article-layout blockquote {
  margin: 1.5em 0;
  padding-left: 1.5em;
  border-left: 2px solid var(--color);
  color: var(--color);
  font-size: 1.3em;
  font-weight: normal;
  text-align: left;
}
.article-layout picture {
  padding: 10px;
  border: 5px dotted;
  display: block;
  margin: 1.5em 0;
}
.article-layout img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.block-type-video figure {
  padding: 10px;
  border: 5px dotted;
  display: block;
  margin: 1.5em 0;
}

.intro p {
  font-weight: normal;
}

.row-header {
  position: absolute;
  top: 0;
}
.row-header .article-content {
  padding-top: 20vh;
  box-sizing: border-box;
  padding-bottom: 0;
}

.row-content {
  padding-top: calc(25vh + 40px);
}

.col.col-sidebar {
  width: 400px;
  padding-left: 25px;
  padding-right: 25px;
  flex: none;
}

.col.article-images {
  padding-left: 25px;
}

.article-content {
  padding-bottom: 50px;
}
.article-content ul {
  list-style: circle;
  font-weight: normal;
}
.article-content ul li {
  margin-bottom: 0.4rem;
}

.cartouche-cat .cartouche-holder {
  width: 75%;
  margin: 0 auto;
  margin-top: 40px;
  max-width: 300px;
}

.article-siblings {
  list-style: none;
  font-size: 21px;
  font-weight: normal;
  margin-top: 0;
}
.article-siblings li {
  margin-bottom: 8px;
}
.article-siblings li a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.article-siblings li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: var(--color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.article-siblings li a:hover::after {
  transform: scaleX(1);
  background-color: var(--red);
}
.article-siblings li a .subtitle {
  font-size: 0.7em;
  font-style: italic;
}
.article-siblings li.active a {
  position: relative;
}
.article-siblings li.active a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  border-bottom: 1px solid var(--color);
  background-color: transparent;
  transform: scale(1);
}

.article-sidebar h3 {
  color: inherit;
  font-size: 1em;
  margin-bottom: 1.5em;
  font-weight: bold;
  text-decoration-thickness: 2px;
}

.audio-caption a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9em;
}
.audio-caption a svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 0.5em;
  display: inline-block;
}

.article-logo {
  top: 4vh;
  left: 0;
  position: fixed;
  min-width: 160px;
}

.col.col-2.col-spacer {
  min-width: 160px;
}

.col.article-sidebar {
  margin-top: 0;
  padding-top: 40px;
  top: 25vh;
  left: 0;
  position: fixed;
  height: calc(75dvh - 50px);
  min-width: 160px;
}
.col.article-sidebar:after {
  height: calc(100% - 40px);
  border-left: 1px solid var(--color);
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
}

.intro {
  font-size: 14px;
  font-weight: normal;
}
.intro p + p {
  margin-top: 1.5em;
}
.intro p {
  text-indent: 1.5rem;
  text-align: justify;
}
.intro li p {
  text-indent: 0;
  text-align: left;
}
.intro ul {
  margin-left: 1.5em;
  margin-top: 1.5em;
}

.article-images picture,
.col.images picture {
  padding: 10px;
  box-sizing: border-box;
  border: 5px dotted;
  display: block;
  line-height: 0;
  margin-bottom: 1.5em;
}
.article-images picture img,
.col.images picture img {
  margin-bottom: 0;
  line-height: 0;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.article-images picture:first-of-type,
.col.images picture:first-of-type {
  margin-top: 0;
}
.article-images a,
.col.images a {
  cursor: pointer;
}
.article-images a:hover picture img,
.col.images a:hover picture img {
  opacity: 0.8;
}

.article-content p {
  text-align: justify;
}

.article-content a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.article-content a:hover {
  text-decoration: none;
}

.col.article-images {
  padding-right: 25px;
}

figure audio {
  width: 100%;
}

.block-type-audio figure figcaption {
  text-align: center;
  margin-top: 0.5rem;
}

.block-type-audio,
.block-type-embed,
.block-type-markdown {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.green-audio-player {
  width: 100%;
  height: 45px;
  box-shadow: none;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 28px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #fff;
  box-sizing: border-box;
  outline: none;
}

.green-audio-player .controls {
  font-family: "StudioFeixenSerif", serif;
  font-size: 14px;
  line-height: 1.2em;
  color: var(--color);
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  outline: none;
}

.green-audio-player .slider .gap-progress .pin {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: var(--color);
  position: absolute;
  pointer-events: all;
  box-shadow: none;
}

.green-audio-player .slider .gap-progress {
  background-color: var(--color);
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}

.green-audio-player .volume .volume__button.open path {
  fill: var(--color);
}

@media (max-width: 1440px) {
  .col.article-content {
    padding-right: 2%;
  }
  .col.article-images {
    padding-left: 2%;
  }
}
.video {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: calc(var(--h) / var(--w) * 100%);
  height: 0;
  overflow: hidden;
}
.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
  text-align: center;
}

.block + .block-type-text {
  margin-top: 0;
}

.block-type-text + .block-type-text {
  margin-top: 2.5em;
}

.block-type-video,
.block-type-image {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.article-content h1.has-subtitle {
  margin-bottom: 0.5rem;
}

.article-content .subtitle {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: normal;
  display: block;
  margin-bottom: 2.5em;
  padding-left: 1em;
  border-left: 2px solid var(--color);
}

.fslightboxc:after {
  display: none;
}

.fslightboxci {
  padding: 20px 25px 30px 25px;
  max-width: 1200px;
  color: var(--color) !important;
  text-align: center;
  font-size: 14px;
  font-family: "StudioFeixenSerif", serif !important;
}

.fslightboxsvgp {
  transition: fill 0.15s ease;
  fill: var(--color) !important;
}

@media screen and (max-width: 768px), (orientation: portrait) {
  .col.article-sidebar,
  .col-spacer {
    display: none;
  }
  .article-content,
  .article-images {
    width: 100%;
  }
  .col.article-content {
    padding-right: 15px;
  }
  .row-content {
    display: flex;
    flex-direction: column;
  }
  .article-content p {
    text-align: left;
  }
  .col.article-images {
    padding-left: 15px;
    padding-right: 15px;
  }
  .article-layout .col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .article-content {
    padding-bottom: 30px;
  }
  .row-content {
    padding-top: 20vh;
  }
  .article-layout h1 {
    margin-bottom: 15vh;
    line-height: 1.1em;
  }
  .articles .article-layout h1 {
    margin-bottom: 7.5vh;
    line-height: 1.1em;
  }
  .article-content .block ul {
    list-style: circle;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 0;
  }
  .article-content ul.articles-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 15vh;
  }
  .article-content ul.articles-mobile li {
    margin-bottom: 18px;
  }
  .article-content ul.articles-mobile li a:after {
    display: block;
    transform: scale(1);
  }
  .articles .article-content ul.articles-mobile {
    margin-top: 0;
    margin-bottom: 7.5vh;
  }
  .travaux .content .travaux-selections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    height: auto;
    margin: 0 auto;
    width: 100%;
    padding-top: 15vh;
    padding-left: 15px;
    padding-right: 15px;
  }
  .travaux .burger span {
    height: 2px;
    width: 100%;
    background-color: var(--red, black);
    transition: all 0.3s ease;
  }
  .sibling-block {
    min-height: 20vh;
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid;
    text-align: center;
  }
  .sibling-block h3 {
    font-size: 1.3rem;
  }
  .sibling-block .article-siblings {
    font-size: 1em;
  }
  .articles-mobile li {
    width: 100%;
    text-align: center;
  }
  .articles-mobile li a {
    display: inline-block;
    align-items: center;
    justify-content: center;
  }
  .articles-mobile li a .subtitle {
    margin-bottom: 0;
    border-left: none;
    display: inline;
    margin-right: 0;
    padding-left: 0.5em;
  }
  .article-content .subtitle {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: normal;
    display: block;
    margin-bottom: 2.5em;
    padding-left: 0;
    text-align: center;
    border-left: none;
  }
}
.agenda {
  color: var(--color);
}
.agenda SVG {
  fill: var(--color);
}
.agenda .menu-inner .travaux-item > a svg path {
  stroke: var(--color);
}

.agenda-layout {
  padding-bottom: 140px;
}
.agenda-layout .row {
  height: auto;
}
.agenda-layout .col {
  height: auto;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 0;
  flex: 1;
}
.agenda-layout h1 {
  color: inherit;
  margin-bottom: 1.8em;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
}
.agenda-layout h2 {
  color: inherit;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: bold;
}
.agenda-layout h3,
.agenda-layout h4,
.agenda-layout h5,
.agenda-layout h6 {
  color: inherit;
  font-size: 20px;
  margin-bottom: 30px;
}
.agenda-layout ul + h3,
.agenda-layout ul + h2 {
  margin-top: 1.5em;
}

.event-list {
  list-style-type: none;
  padding: 0;
}
.event-list li:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.event-item {
  max-width: 600px;
  font-size: 14px;
  border-bottom: 1px solid;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: normal;
}
.event-item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.event-item a:hover {
  text-decoration: none;
  color: #5497da;
}

.event-image {
  margin-bottom: 20px;
}
.event-image picture {
  padding: 10px;
  box-sizing: border-box;
  border: 4px dotted;
  display: block;
}
.event-image img {
  width: 100%;
  height: auto;
}

.agenda-cartouche,
.agenda-illustration {
  margin-top: 75px;
  margin-bottom: 75px;
}
.agenda-cartouche svg,
.agenda-illustration svg {
  display: block;
  margin: 0 auto;
  width: 75%;
  max-width: 300px;
}

.agenda .row-content {
  padding-left: 250px;
  padding-right: 50px;
}

.agenda-upcoming {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.agenda-upcoming li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.agenda-upcoming h2.red-title {
  color: var(--red);
}

.event-coming li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  color: var(--red);
}
.event-coming li a {
  color: var(--red);
}
.event-coming li picture {
  border-color: var(--red);
}
.event-coming li svg {
  fill: var(--red);
}

@media (max-width: 1440px) {
  .agenda-upcoming {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  .agenda .row-content {
    padding-left: 0px;
    padding-right: 0;
  }
  .agenda-upcoming {
    -moz-column-count: 1;
         column-count: 1;
  }
  .agenda-layout .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.powa, .parent-powa {
  --color:#b85d5c;
  color: #b85d5c;
  background-color: #efecea;
}
.powa svg, .parent-powa svg {
  fill: #b85d5c;
}

.about-content {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 50px;
}
.about-content ul {
  list-style: none;
  margin-left: 0rem;
}
.about-content ul li + li {
  margin-top: 0.3rem;
}
.about-content h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0.72em;
}
.about-content p {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: bold;
}
.about-content p a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  text-underline-offset: 0.2em;
}
.about-content p a:hover {
  text-decoration: none;
  color: #5497da;
}
.about-content .block + .block {
  margin-top: 40px;
}
.about-content .svg-image {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 100%;
}
.about-content .svg-image svg {
  width: 75%;
  margin: 0 auto;
  max-width: 350px;
  display: block;
}

.about-intro {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1200px;
  margin-bottom: 60px;
}
.about-intro h1 {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 1.8em;
}
.about-intro p {
  font-size: 25px;
  font-weight: bold;
}

.col.images {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 40px;
}
.col.images picture {
  border: none;
  padding: 0;
  margin-bottom: 25px;
}

.col.blocks {
  padding-right: 25px;
  padding-left: 0;
}

.cartouche-svg text {
  font-size: 12px;
  fill: black;
  dominant-baseline: middle;
}

.hide-mobile {
  display: block;
}

.show-mobile, .show-xs {
  display: none;
}

.hide-mobile-flex {
  display: flex;
}

@media (max-width: 768px) {
  :root {
    --margin: 3%;
    --fonth2: 21px;
    --fontp: 16px;
    --fonth3: 15px;
    --fonth1: 24px;
    --swiper-pagination-bullet-width: 3px;
    --swiper-pagination-bullet-height: 3px;
    --swiper-pagination-bullet-inactive-color: $color;
    --swiper-pagination-bullet-active-color: $color;
    --swiper-pagination-color: $color;
    --margin: 24px;
    line-height: 1.15em;
  }
  .hide-mobile, .hide-xs {
    display: none;
  }
  .hide-mobile-flex {
    display: none;
  }
  .show-mobile, .show-xs {
    display: block;
  }
  .popup-title {
    padding: 0 15px;
    margin-top: 1px;
    padding-top: 14px;
  }
  section {
    margin-bottom: 0;
  }
  .header-perren {
    display: flex;
    flex-direction: row;
    position: sticky;
    z-index: 2000;
    top: 0;
  }
  .site-title a {
    padding: 0 5px;
  }
  .header-perren .col-menu {
    flex: auto;
  }
  .home-introduction {
    margin-bottom: 0;
  }
  .home-introduction .columns {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-introduction .column {
    width: 100%;
  }
  .home-introduction .text-intro {
    width: 100%;
    padding: 20px;
    font-size: 21px;
  }
  .home-introduction .title-intro {
    width: 100%;
    font-family: "Surt";
    font-size: 12px;
    text-align: center;
    padding: 5%;
    height: 33vh;
    display: flex;
    align-items: center;
    line-height: 1.15em;
  }
  .article.twoColumnsPictureLeft {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .article.twoColumnsPictureLeft .column {
    width: 100%;
  }
  .article.twoColumnsPictureRight .picture,
  .article.twoColumnsPictureLeft .picture {
    height: auto;
    line-height: 0;
  }
  .article.twoColumnsPictureRight .text,
  .article.twoColumnsPictureLeft .text {
    padding: 20px;
    color: #b1b3b4;
    display: block;
    justify-content: space-between;
    height: auto;
  }
  .article.twoColumnsPictureRight,
  .article.twoColumnsPictureLeft {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .article.twoColumnsPictureRight {
    flex-direction: column-reverse;
  }
  .article.twoColumnsPictureRight h2,
  .article.twoColumnsPictureLeft h2 {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  .article.twoColumnsPictureRight .column,
  .article.twoColumnsPictureLeft .column {
    width: 100%;
  }
  #form-footer .row .col-4 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    min-height: 0;
    position: relative;
  }
  #form-footer .row {
    width: 100%;
    display: block;
  }
  #form-footer .row .col-4:after {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    right: 10%;
    top: unset;
    bottom: 0;
    border-left: none;
    border-bottom: 1px solid #b1b3b4;
  }
  #form-footer .col-description {
    font-size: 21px;
    text-align: center;
  }
  .article {
    height: auto;
    width: 100%;
    position: relative;
  }
  .link {
    top: 60px;
  }
  .contact-section {
    min-height: calc(50vh - 64px);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    padding: 5%;
  }
  .contact-section a {
    border-bottom: none;
  }
  .show-mobile {
    display: block;
  }
}/*# sourceMappingURL=index.css.map */