/*!
Theme Name: wp-bk
Theme URI: https://www.wp.bertrand-kaernel.fr/
Author: Bertrand Kaernel
Author URI: https://www.bertrand-kaernel.fr/
Description: xxxx
Version: 1.0.0
Tested up to: 8.3
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-bk
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wp-bk is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/** Breakpoints */
/** SCREEN SIZES */
/** PX SIZES */
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul, ol {
  margin: 0px 0px 1.5rem 0px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5rem;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed, iframe, object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
a {
  color: #5280de;
  text-decoration: none;
}
a:visited {
  color: #5280de;
}
a:hover, a:focus, a:active {
  color: #bc60d0;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a.a-inverse {
  color: #bc60d0;
}
a.a-inverse:hover, a.a-inverse:focus, a.a-inverse:active {
  color: #f4f2f0;
}
a.a-light {
  color: #939393;
}
a.a-light:hover, a.a-light:focus, a.a-light:active {
  color: #f4f2f0;
}
a.icone {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #5280de;
  margin-left: 12px;
}
a.icone svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55%;
  transform: translate(-50%, -50%);
  fill: #f4f2f0;
}
a.icone:hover {
  background: #bc60d0;
}
a.icone--sm {
  width: 1.5rem;
  height: 1.5rem;
}
a.icone--lg {
  width: 2.75rem;
  height: 2.75rem;
}
a.icone--reverse {
  background: #121212;
}
a.icone--reverse:hover {
  background: #f4f2f0;
}
a.icone--reverse:hover svg {
  fill: #121212;
}
.tags-links {
  display: inline-block;
}
.tags-links a {
  position: relative;
  font-size: smaller;
  color: #939393;
  margin-right: 0.5rem;
  padding: 4px 8px;
  outline: 1px solid #939393;
  border-radius: 4px;
}
.tags-links a:hover {
  color: #5280de;
  outline: 1px solid #5280de;
}
button, a.button, input[type="button"], input[type="reset"], input[type="submit"] {
  border: 0px solid;
  border-color: #5280de;
  border-radius: 8px;
  background: #5280de;
  color: #f4f2f0;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
  width: max-content;
}
button:hover, a.button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  border-color: #939393;
  cursor: pointer;
  background: #bc60d0;
}
button:active, button:focus, a.button:active, a.button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
  padding: 8px;
}
textarea {
  width: 100%;
}
#le_loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(231, 234, 237, 0.7);
  z-index: 99;
}
#le_loader .le-loader-c {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}
#le_loader .le-loader-c div {
  position: absolute;
  border: 6px solid #6b3ac3;
  border-radius: 50%;
  opacity: 1;
  animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#le_loader .le-loader-c div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loader {
  0% {
    height: 0;
    left: 40px;
    opacity: 0;
    top: 40px;
    width: 0;
  }
  4.9% {
    height: 0;
    left: 40px;
    opacity: 0;
    top: 40px;
    width: 0;
  }
  5% {
    height: 0;
    left: 40px;
    opacity: 1;
    top: 40px;
    width: 0;
  }
  to {
    height: 80px;
    left: 0;
    opacity: 0;
    top: 0;
    width: 80px;
  }
}
.site-footer {
  background: #2a4c6d;
  min-height: 25vh;
}
.site-footer__top {
  grid-column: 1 / span 8;
  background: #e7eaed;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .site-footer__top {
    grid-column: 1 / span 14;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.site-footer__top .block-newsletter {
  text-align: center;
}
.site-footer__top .block-newsletter__title {
  margin-bottom: 1.5rem;
}
.site-footer__top .block-newsletter .honeypot {
  display: none;
}
.site-footer__top .block-newsletter__consent {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.6;
}
.site-footer__main {
  padding-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #f4f2f0;
}
.site-footer__main hgroup {
  margin-bottom: 2rem;
}
.site-footer__main hgroup .site-title {
  font-size: 8rem;
  margin-bottom: 0px;
  font-family: "Alumni Sans", "Sigmar", serif;
  text-transform: uppercase;
}
.site-footer__main .block.adresse {
  margin-bottom: 2.5rem;
}
.site-footer__main .reseaux-sociaux {
  margin-bottom: 3rem;
}
.site-footer__main .reseaux-sociaux .icone {
  margin: 0px 8px;
}
.site-footer nav ul {
  display: inline-flex;
  list-style: none;
}
.site-footer nav ul li {
  margin: 0px 0.5rem;
}
.site-footer nav ul li a {
  color: #939393;
}
.site-footer nav ul li a:hover {
  color: #f4f2f0;
}
.site-footer .block-zero-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
  color: #121212;
}
.site-footer .block-zero-cookie svg {
  max-width: 16px;
  height: auto;
  margin-right: 12px;
  fill: #bc60d0;
}
.site-footer .site-info {
  position: relative;
  color: #939393;
}
.site-footer .site-info.grid-14 {
  background: #121212;
  grid-column: 1 / span 8;
}
@media (min-width: 769px) {
  .site-footer .site-info.grid-14 {
    grid-column: 1 / span 14;
  }
}
.site-footer .site-info__row {
  padding: 8px 0px;
  text-align: right;
  grid-column: 2 / span 8;
}
@media (min-width: 769px) {
  .site-footer .site-info__row {
    grid-column: 2 / span 12;
  }
}
.site-footer .site-performances {
  position: relative;
}
.site-footer .site-performances__input {
  position: absolute;
  z-index: 3;
  top: -40px;
  right: 0px;
  width: 40px;
  height: 40px;
  opacity: 0;
}
.site-footer .site-performances__input:hover {
  cursor: pointer;
}
.site-footer .site-performances__button {
  position: absolute;
  top: -40px;
  right: 0px;
  background: #f4f2f0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .site-performances__button span {
  color: #121212;
  font-size: 1.75rem;
  font-weight: 900;
  position: absolute;
}
.site-footer .site-performances__content {
  display: none;
  padding: 12px 0px;
  color: #121212;
}
.site-footer .site-performances__content__row {
  grid-column: 2 / span 8;
}
@media (min-width: 769px) {
  .site-footer .site-performances__content__row {
    grid-column: 2 / span 12;
  }
}
.site-footer .site-performances__content h2, .site-footer .site-performances__content span {
  display: inline-block;
  margin: 0px;
}
.site-footer .site-performances__input:checked {
  height: 100%;
}
.site-footer .site-performances__input:checked ~ .site-performances__content {
  display: grid;
  background: #6b3ac3;
}
.site-footer .site-performances__input:checked + .site-performances__button span {
  transform: rotate(135deg);
  transition: all 0.3s ease-in;
}
.archive .layout .page-header .page-title .prefix {
  display: none;
}
.archive .posts-navigation {
  padding-top: 32px;
  padding-bottom: 48px;
}
.grid-horizontale {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .grid-horizontale {
    grid-gap: 1.5rem;
  }
}
.grid-horizontale .card {
  display: grid;
  grid-template-columns: 3fr 6fr;
  grid-template-rows: 1fr;
}
.grid-verticale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 1.5rem;
}
.card {
  background-color: #e7eaed;
  overflow: hidden;
  border-radius: 12px;
  direction: rtl;
}
.card:last-child {
  margin-bottom: 0px;
}
.card__cover .cover__c {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}
@supports (aspect-ratio: 1) {
  .card__cover .cover__c {
    aspect-ratio: 1.2;
  }
}
@supports not (aspect-ratio: 1) {
  .card__cover .cover__c {
    position: relative;
    width: 100%;
    padding-top: 83.3333333333%;
    overflow: hidden;
  }
  .card__cover .cover__c > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.card__cover .cover__c:hover {
  filter: brightness(1);
}
.card__content {
  position: relative;
  padding: 1.5rem;
  direction: ltr;
  height: 100%;
}
@media (min-width: 769px) {
  .card__content {
    padding: 2rem;
  }
}
.card__content .entry-meta {
  color: #939393;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .card__content .tags-links {
    position: absolute;
    bottom: 2rem;
  }
}
.card.card-breve .card__content {
  aspect-ratio: 1;
  direction: ltr;
  overflow-y: scroll;
}
.card.card-date {
  direction: ltr;
  padding: 1.5rem;
}
.card.card-date .card-date__before {
  margin-bottom: 1rem;
}
.card.card-date .card-date__before .date-time {
  font-size: large;
  font-weight: 900;
}
article.page {
  grid-column: 1 / span 8;
}
@media screen and (min-width: 769px) {
  article.page {
    grid-column: 1 / span 14;
  }
}
@media screen and (min-width: 1025px) {
  article.page .entry-header {
    grid-column: 4/ span 8;
    margin-bottom: 1.5rem;
  }
}
article.page .page-cover {
  grid-column: 2 / span 12;
  padding-top: 0px;
  padding-bottom: 32px;
}
article.page .page-cover figure {
  margin: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@supports (aspect-ratio: 1) {
  article.page .page-cover figure {
    aspect-ratio: 1.8;
  }
}
@supports not (aspect-ratio: 1) {
  article.page .page-cover figure {
    position: relative;
    width: 100%;
    padding-top: 55.5555555556%;
    overflow: hidden;
  }
  article.page .page-cover figure > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
article.page .page-cover figcaption {
  text-align: center;
  margin-top: 8px;
}
article.page .entry-content {
  grid-column: 2 / span 6;
}
@media (min-width: 769px) {
  article.page .entry-content {
    grid-column: 2 / span 12;
  }
}
@media (min-width: 1025px) {
  article.page .entry-content {
    grid-column: 4 / span 8;
  }
}
.page-template-page-contact .success-message {
  border: 2px solid #23a08e;
  color: #23a08e;
  margin-bottom: 36px;
  padding: 8px;
}
.page-template-page-contact .validation-message {
  border: 2px solid #e23a08;
  color: #e23a08;
  margin-bottom: 36px;
  padding: 8px;
}
.page-template-page-contact #bk-contact-form {
  display: grid;
}
.page-template-page-contact #bk-contact-form label {
  margin-top: 24px;
  margin-bottom: 4px;
  display: grid;
}
.page-template-page-contact #bk-contact-form textarea, .page-template-page-contact #bk-contact-form input {
  margin-top: 8px;
}
.page-template-page-contact #bk-contact-form input[type="submit"] {
  margin-top: 24px;
  width: fit-content;
}
.page-template-page-contact #bk-contact-form .honeypot {
  display: none;
}
.page-template-page-agenda-next .page-header, .page-template-page-agenda-past .page-header {
  text-align: center;
}
.page-template-page-agenda-next .page-footer, .page-template-page-agenda-past .page-footer {
  padding-top: 32px;
  padding-bottom: 16px;
  grid-column: 2/ span 6;
  text-align: center;
}
@media (min-width: 769px) {
  .page-template-page-agenda-next .page-footer, .page-template-page-agenda-past .page-footer {
    grid-column: 2 / span 12;
    text-align: right;
  }
}
.home main {
  padding: 0px;
}
.home main article.type-page {
  margin-bottom: 4rem;
}
.home .section {
  margin-bottom: 3rem;
}
.home .section:last-child {
  margin-bottom: 0px;
}
.home .section .section-header h2.h1 {
  margin-bottom: 0px;
}
.home .section--en-tete {
  position: relative;
}
.home .section--en-tete .article {
  grid-column: 1 / span 8;
  grid-template-rows: repeat(6, 12.5vh);
  background: #e7eaed;
}
@media screen and (min-width: 769px) {
  .home .section--en-tete .article {
    grid-column: 1 / span 14;
  }
}
.home .section--en-tete .article__content {
  z-index: 6;
  grid-column: 2 / span 8;
  grid-row: 2 / span 4;
  padding-right: 3rem;
}
.home .section--en-tete .article__cover {
  grid-column: 10 / span 5;
  grid-row: span 3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.error404 section {
  grid-column: 2/ span 6;
}
@media (min-width: 769px) {
  .error404 section {
    grid-column: 4/ span 8;
  }
}
.error404 .page-header {
  margin-top: 48px;
}
.error404 .search-form {
  margin-bottom: 48px;
}
.error404 .widget_recent_entries ul {
  margin-top: 0px;
  padding-top: 0px;
}
.search .page-header {
  padding-top: 18px;
  grid-column: 2 / span 6;
}
@media (min-width: 769px) {
  .search .page-header {
    padding-top: 32px;
    padding-bottom: 32px;
    grid-column: 2 / span 12;
  }
}
.search .page, .search .card {
  grid-column: 2 / span 6;
  padding-bottom: 0px;
}
@media (min-width: 769px) {
  .search .page, .search .card {
    grid-column: 2 / span 12;
  }
}
.single main {
  padding-top: 0rem;
}
.single .bk-breadcrumb {
  padding: 8px 0px;
  overflow: hidden;
  text-wrap: nowrap;
  border-bottom: 1px solid #939393;
}
.single .bk-breadcrumb__ul {
  grid-column: 2 / span 6;
  padding: 0px;
  margin: 0px;
  display: inline-flex;
  align-items: center;
  list-style: none;
}
@media (min-width: 769px) {
  .single .bk-breadcrumb__ul {
    grid-column: 2 / span 12;
  }
}
.single .post {
  position: relative;
}
.single .post .entry-header {
  position: relative;
  grid-column: 1 / span 8;
  height: 40rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .single .post .entry-header {
    grid-column: 1 / span 14;
    margin-bottom: 3rem;
  }
}
.single .post .entry-header .post-cover {
  grid-column: 1 / span 8;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .single .post .entry-header .post-cover {
    grid-column: 1 / span 14;
  }
}
.single .post .entry-header .post-cover figure {
  position: absolute;
  margin: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.single .post .entry-header hgroup {
  grid-column: 2 / span 6;
  position: absolute;
  bottom: 4rem;
}
@media (min-width: 769px) {
  .single .post .entry-header hgroup {
    grid-column: 3 / span 10;
  }
}
@media (min-width: 1025px) {
  .single .post .entry-header hgroup {
    grid-column: 4 / span 8;
  }
}
.single .post .entry-header hgroup .entry-title {
  color: #f4f2f0;
  margin-bottom: 0px;
}
.single .post .entry-header hgroup .entry-meta {
  color: #f4f2f0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.single .entry-content {
  grid-column: 2 / span 6;
  margin-bottom: 48px;
}
@media (min-width: 769px) {
  .single .entry-content {
    grid-column: 4 / span 8;
    margin-bottom: 80px;
  }
}
.single .entry-footer {
  grid-column: 2 / span 4;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .single .entry-footer {
    grid-column: 4/ span 8;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1441px) {
  .single .entry-footer {
    margin-bottom: 6rem;
  }
}
.single .entry-footer .tags-links {
  margin-bottom: 24px;
}
@media (min-width: 769px) {
  .single .entry-footer .tags-links {
    margin-bottom: 3rem;
  }
}
.single .entry-footer .single-partage {
  width: 100%;
}
@media (min-width: 769px) {
  .single .entry-footer .single-partage {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.single .post-navigation {
  border-top: 1px solid #cfd5db;
  padding-top: 2rem;
}
.single .post-navigation__row {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.single .post-navigation__mention {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.single .post-navigation h2 {
  margin-bottom: 0px;
}
.single .post-navigation .post-previous {
  flex: 1 1 50%;
  text-align: center;
}
@media (min-width: 769px) {
  .single .post-navigation .post-previous {
    text-align: left;
  }
}
.single .post-navigation .post-next {
  flex: 1 1 50%;
  text-align: center;
}
@media (min-width: 769px) {
  .single .post-navigation .post-next {
    text-align: right;
  }
}
.single-breve .entry-header {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 426px) {
  .single-breve .entry-header {
    margin-top: 3rem;
  }
}
@media (min-width: 1025px) {
  .single-breve .entry-header {
    margin-top: 4rem;
  }
}
.single-breve .entry-header hgroup {
  grid-column: 2 / span 12;
}
@media (min-width: 769px) {
  .single-breve .entry-header hgroup {
    grid-column: 3 / span 10;
  }
}
@media (min-width: 1025px) {
  .single-breve .entry-header hgroup {
    grid-column: 4 / span 8;
  }
}
.single-breve .entry-header hgroup .entry-meta {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.single-breve .entry-header hgroup .entry-title {
  margin-bottom: 0px;
}
.single-date .entry-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.single-date .entry-header hgroup {
  grid-column: 2 / span 12;
}
@media (min-width: 769px) {
  .single-date .entry-header hgroup {
    grid-column: 3 / span 10;
  }
}
@media (min-width: 1025px) {
  .single-date .entry-header hgroup {
    grid-column: 4 / span 8;
  }
}
.single-date .entry-header .date-detail {
  padding: 2rem;
  background: #e7eaed;
  border-radius: 12px;
  width: 100%;
}
@media (min-width: 769px) {
  .single-date .entry-header .date-detail {
    grid-column: 3 / span 10;
  }
}
@media (min-width: 1025px) {
  .single-date .entry-header .date-detail {
    grid-column: 4 / span 8;
  }
}
.single-date .entry-header .date-detail__el {
  margin-bottom: 0.5rem;
}
.single-date .entry-header .date-detail + .post-cover {
  margin-top: 1.5rem;
}
@media (min-width: 769px) {
  .single-date .entry-header .post-cover {
    grid-column: 3 / span 10;
  }
}
@media (min-width: 1025px) {
  .single-date .entry-header .post-cover {
    grid-column: 4 / span 8;
  }
}
.single-date .entry-header .post-cover figure {
  background-image: var(--post-cover);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin: 0px;
}
@supports (aspect-ratio: 1) {
  .single-date .entry-header .post-cover figure {
    aspect-ratio: var(--cover-ratio);
  }
}
@supports not (aspect-ratio: 1) {
  .single-date .entry-header .post-cover figure {
    position: relative;
    width: 100%;
    padding-top: 100 / var(--cover-ratio) * 1%;
    overflow: hidden;
  }
  .single-date .entry-header .post-cover figure > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
  font-size: small;
  color: rgba(42, 76, 109, 0.7);
}
.gallery {
  margin-top: 16px;
  margin-bottom: 32px;
  display: grid;
  grid-gap: 36px;
}
.gallery .gallery-item {
  margin: 0px;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}
p.exergue {
  padding: 0px;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-left: 2rem;
}
.shortcode-encadre {
  background-color: #e7eaed;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0px;
}
.shortcode-encadre p + h2 {
  margin-top: 0px;
}
.shortcode-encadre p:first-child, .shortcode-encadre p:last-child {
  display: none;
}
.shortcode-chapeau {
  font-size: 1.2rem;
  font-weight: 600;
}
.accordion {
  border-radius: 5px;
  margin: 40px auto;
  width: 100%;
  background: #e7eaed;
}
.accordion__title {
  padding: 1.125rem;
  cursor: pointer;
  position: relative;
  border-bottom: 3px solid white;
}
.accordion__title > h3 {
  margin-top: 0px !important;
  margin-bottom: 0px;
  padding-right: 4rem;
}
.accordion__title.active span.loadMore {
  transform: rotate(45deg);
}
.accordion__title span.loadMore {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: absolute;
  right: 1.5rem;
  top: 28px;
  background: transparent;
  padding: 0px;
  border: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.accordion > br {
  display: none;
}
.accordion__content {
  border-top: 0px;
  padding: 0rem 1.25rem;
  overflow: hidden;
  height: 0px;
}
.accordion__content > br:first-child, .accordion__content > br:last-child {
  display: none;
}
.accordion__content p:nth-child(1) {
  margin-top: 0px;
}
.accordion__title.active + .accordion__content {
  padding: 1.25rem 1.25rem;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.bk-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0px;
}
.bk-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
  display: none;
}
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
.hidden {
  display: none;
}
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}
.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
/** 
* AVOID A FOUC
*/
html {
  visibility: visible;
  opacity: 1;
}
