@charset "UTF-8";
/**
 * Manu Theme - Main Stylesheet
 * Child theme of Twenty Twenty-Five
 */
html, body {
  height: 100%;
  margin: 0;
}

body {
  --tec-color-background-primary:var(--wp--preset--color--primary-700);
  --tec-color-accent-primary:var(--wp--preset--color--primary-800);
  --tec-color-background-secondary:var(--wp--preset--color--secondary-500);
  --tec-color-background-primary-multiday:var(--wp--preset--color--primary-500);
  --tec-color-background-primary-multiday-hover:
  color-mix(in srgb, var(--wp--preset--color--primary-500) 70%, transparent);
  --tec-color-accent-primary-background-datepicker:
  color-mix(in srgb, var(--wp--preset--color--primary-500) 10%, transparent);
}

body > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
}

.is-layout-flow > .alignright {
  margin-inline-start: 0;
}

.wp-block-columns:has(details) {
  width: 100%;
}

/**
 * Design tokens — généré depuis Figma (Token Studio)
 *
 * Ce fichier contient les tokens que theme.json ne gère pas,
 * plus les couleurs volontairement absentes de la palette de l'éditeur.
 *
 * Les couleurs de la palette, les familles et les tailles desktop
 * vivent dans theme.json, exposées par WordPress via --wp--preset--*
 */
:root {
  /* ---------------------------------------------------------------
   * Couleurs hors palette éditeur
   *
   * Ces couleurs existent dans Figma mais ne sont pas proposées dans
   * l'éditeur, pour ne pas noyer l'utilisateur sous les pastilles.
   * Réservées au CSS.
   * --------------------------------------------------------------- */
  /* Gris */
  --color-neutral-100: #F3F3F3;
  --color-neutral-200: #EBEDEF;
  --color-neutral-300: #D5DDE9;
  --color-neutral-500: #516586;
  --color-neutral-600: #475A78;
  /* Nuances intermédiaires */
  --color-primary-600: #72C334;
  --color-primary-900: #00303B;
  --color-secondary-600: #FF7300;
  --color-secondary-700: #E85100;
  /* États */
  --color-success-500: #51AB37;
  --color-success-100: #DDF4E3;
  --color-warning-500: #E07924;
  --color-warning-100: #FFECC4;
  --color-danger-500: #C41E3A;
  --color-danger-100: #FFDBDB;
  /* ---------------------------------------------------------------
   * Border radius
   * --------------------------------------------------------------- */
  --rounded-xs: 4px;
  --rounded-sm: 8px;
  --rounded-md: 16px;
  --rounded-lg: 24px;
  --rounded-xl: 32px;
  --rounded-2xl: 40px;
  --rounded-full: 9999px;
  /* ---------------------------------------------------------------
   * Ombres
   * --------------------------------------------------------------- */
  --shd-btns: 0 8px 10px 0 rgba(0, 0, 0, 0.12);
  --shd-img: 1px 1px 12px 0 rgba(0, 0, 0, 0.12);
  --shd-up: 1px 1px 20px 0 rgba(0, 0, 0, 0.12);
  /* ---------------------------------------------------------------
   * Tailles de police — mobile (< 600px)
   *
   * Les tailles desktop sont dans theme.json.
   * Celles-ci ne servent qu'aux surcharges de _typography-mobile.scss.
   * --------------------------------------------------------------- */
  --ft-siz-xx-small-mob: 1.1rem;
  --ft-siz-x-small-mob: 1.15rem;
  --ft-siz-small-mob: 1.25rem;
  --ft-siz-medium-mob: 1.3rem;
  --ft-siz-large-mob: 1.5rem;
  --ft-siz-x-large-mob: 1.8rem;
  --ft-siz-2x-large-mob: 2.1rem;
  --ft-siz-3x-large-mob: 2.5rem;
  /* ---------------------------------------------------------------
   * Divers
   * --------------------------------------------------------------- */
  --opacity-hover: 0.7;
  --btn-padding: 0.6rem 2rem;
}

/**
 * Breakpoints et variables globales
 */
/* Variables SCSS - pour les media queries */
/* Variables CSS - pour utilisation en HTML/CSS normal */
:root {
  --breakpoint-xs: 320px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1440px;
  --breakpoint-3xl: 1600px;
  --wp-breakpoint-mobile: 600px;
  --wp-breakpoint-tablet: 782px;
  --wp-breakpoint-desktop: 1024px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideX {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInX {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideY {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInY {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(80%);
  }
  90% {
    transform: scale(120%);
  }
  100% {
    transform: scale(100%);
  }
}
/* TRANSITIONS ON SCROLL */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.fade-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

/**
 * Typographie globale
 */
h1 {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

h2, h2.wp-block-heading {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
}

h3, h3.wp-block-heading {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 0rem;
}
h3 a, h3.wp-block-heading a {
  font-family: inherit;
}

main > div:first-of-type > div:first-of-type > div:first-of-type > h2:first-of-type,
main > div:first-of-type > div:first-of-type > h2:first-of-type,
main > div:first-of-type > h2:first-of-type {
  margin-top: 1rem;
}

p, .is-style-text-subtitle {
  padding-bottom: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  max-width: 100%;
}

ul.wp-block-list {
  padding-inline-start: 1.9rem;
  margin-bottom: 1.5rem;
}
ul.wp-block-list li {
  position: relative;
  margin-top: 0;
  padding-bottom: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
ul.wp-block-list li::marker {
  font-size: 0.9em;
  color: var(--wp--preset--color--primary-800);
}
ul.wp-block-list li ul.wp-block-list {
  padding-inline-start: 2.3rem;
}
ul.wp-block-list > li:first-of-type > ul.wp-block-list {
  margin-bottom: 0;
}
ul.wp-block-list > li:first-of-type > ul.wp-block-list > li:first-of-type {
  padding-top: 1.3rem;
}
ul.wp-block-list > li:first-of-type > ul.wp-block-list > li:last-of-type {
  padding-bottom: 0;
}

ol.wp-block-list {
  margin-bottom: 1.5rem;
}
ol.wp-block-list li {
  position: relative;
  margin-top: 0;
  padding-bottom: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
ol.wp-block-list li::marker {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--wp--preset--color--primary-800);
}
ol.wp-block-list li ul.wp-block-list {
  padding-inline-start: 2.3rem;
}
ol.wp-block-list > li:first-of-type > ul.wp-block-list {
  margin-bottom: 0;
}
ol.wp-block-list > li:first-of-type > ul.wp-block-list > li:first-of-type {
  padding-top: 1.3rem;
}
ol.wp-block-list > li:first-of-type > ul.wp-block-list > li:last-of-type {
  padding-bottom: 0;
}

strong, p strong {
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.02rem;
}

main a, p a, li a {
  position: relative;
  font-size: 1em;
  text-underline-offset: 0.3rem;
  letter-spacing: 0.01rem;
  top: 1px;
}
main a:focus, p a:focus, li a:focus {
  outline: 0;
}
main a, p a, li a {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

figure {
  line-height: 0;
}

.wp-block-quote, .is-layout-flex .wp-block-quote, .wp-block-pullquote blockquote {
  margin: 1rem 0 2rem;
}
.wp-block-quote:last-child, .is-layout-flex .wp-block-quote:last-child, .wp-block-pullquote blockquote:last-child {
  margin-block-start: 1rem;
  margin-block-end: 2rem;
}
.wp-block-quote, .is-layout-flex .wp-block-quote, .wp-block-pullquote blockquote {
  padding: 0 3rem;
  color: var(--wp--preset--color--secondary-800);
  font-size: 1.15em;
}
.wp-block-quote p, .is-layout-flex .wp-block-quote p, .wp-block-pullquote blockquote p {
  font-size: 1em;
  padding-bottom: 0;
}

.wp-block-pullquote {
  font-size: 1.15em;
}
.wp-block-pullquote blockquote {
  padding: 1.5rem 2rem 2rem;
  border-style: solid;
  border-width: 2px 0;
  margin: 0;
  font-size: 1em;
}
.wp-block-pullquote blockquote p {
  font-size: 1em;
  font-weight: 500;
  padding-bottom: 0;
}

details {
  padding-bottom: 1.1rem;
}
details summary {
  position: relative;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 1rem;
}
details summary::marker {
  font-size: 1.25rem;
  color: var(--wp--preset--color--primary-800);
  height: 500px;
}
details summary:focus {
  outline: 0;
}
details > p {
  font-weight: 300;
  font-size: 0.95em;
  padding-top: 0.8rem;
  padding-left: 1rem;
}

pre.wp-block-verse {
  margin: 2rem 0;
  padding: 2.5rem 4rem;
  font-weight: 400;
  background-color: white;
}

.wp-block-cover, .is-layout-flex > div.wp-block-cover {
  padding: 3rem;
  margin-bottom: 3rem;
  min-height: auto;
}
.wp-block-cover .wp-block-cover__background.has-background-dim, .wp-block-cover .wp-block-cover__background, .is-layout-flex > div.wp-block-cover .wp-block-cover__background.has-background-dim, .is-layout-flex > div.wp-block-cover .wp-block-cover__background {
  background-color: var(--wp--preset--color--tertiary-400);
  opacity: 1;
}
.wp-block-cover p.wp-block-paragraph, .is-layout-flex > div.wp-block-cover p.wp-block-paragraph {
  color: var(--wp--preset--color--neutral-900);
}

@media screen and (max-width: 600px) {
  body.home h1 {
    padding-bottom: 0.5rem;
  }
  body.home .pano {
    padding-left: 0;
    padding-right: 0;
    margin-left: -12vh;
    margin-right: 0rem;
    width: calc(100% + 12vh);
  }
  body.home .pano > .wp-block-image {
    position: sticky;
    top: 0;
    height: 100svh;
    width: calc(100% + 50px) !important;
    overflow: hidden;
  }
  body.home .pano > .wp-block-image img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    will-change: transform;
  }
}
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
  background-color: var(--wp--preset--color--neutral-0);
  border-radius: var(--rounded-lg);
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 2.4rem 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote {
  position: relative;
  font-size: var(--wp--preset--font-size--small);
  font-style: italic;
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.6;
  quotes: "« " " »";
  overflow-wrap: break-word;
}
.testimonial-quote::before, .testimonial-quote::after {
  position: absolute;
  color: var(--wp--preset--color--primary-500);
  font-size: var(--wp--preset--font-size--xxx-large);
  line-height: 1;
}
.testimonial-quote::before {
  content: open-quote;
  top: -1.4rem;
  left: -2.8rem;
}
.testimonial-quote::after {
  content: close-quote;
  bottom: -0.5rem;
  right: -2.8rem;
}

.testimonial-author {
  font-weight: 600;
  margin: 0;
  font-size: var(--wp--preset--font-size--xx-small);
}

/* Contrôles */
.carousel-control {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  color: var(--wp--preset--color--neutral-0);
  background-color: var(--wp--preset--color--primary-700);
  border: none;
  padding: 12px 16px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: var(--rounded-full);
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-prev {
  left: -20px;
}

.carousel-next {
  right: -20px;
}

/* Indicateurs (points) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--wp--preset--color--primary-500);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  opacity: 0.1;
}
.carousel-indicator.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonials-carousel {
    margin: 1.5rem 0;
  }
  .testimonial-item {
    padding: 2rem 2rem 0;
  }
  .testimonial-quote {
    font-size: var(--ft-siz-medium-mob);
    line-height: 1.3;
  }
  .testimonial-quote::before {
    left: -1.5rem;
    top: -0.6rem;
  }
  .testimonial-quote::after {
    right: -1.5rem;
    bottom: -0.2rem;
  }
  .testimonial-author {
    font-size: var(--ft-siz-xx-small-mob);
  }
  .carousel-control {
    padding: 8px 12px;
    font-size: 1rem;
  }
}
/**
 * Boutons WordPress
 *
 * Couleurs, typographie, padding et rayon viennent de theme.json
 * (styles.elements.button) et s'appliquent automatiquement.
 *
 * Ce fichier ne gère que ce que theme.json ne sait pas faire :
 * l'ombre, le survol, la mise en page mobile et les variantes.
 */
/* --- Mise en page ---------------------------------------------- */
@media screen and (max-width: 1024px) {
  .wp-block-buttons {
    width: 100%;
  }
  .wp-block-buttons > .wp-block-button {
    width: 100%;
  }
}
.wp-block-buttons > .wp-block-button {
  display: flex;
}

/* --- Apparence commune ------------------------------------------
 * Spécificité alignée sur celle des variantes ci-dessous,
 * pour que l'ordre de déclaration reste prévisible.
 * ---------------------------------------------------------------- */
.wp-block-buttons > .wp-block-button .wp-block-button__link,
.wp-element-button {
  letter-spacing: 0.05rem;
  box-shadow: var(--shd-btns);
  transition: opacity 0.3s ease;
}
.wp-block-buttons > .wp-block-button .wp-block-button__link:hover, .wp-block-buttons > .wp-block-button .wp-block-button__link:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible {
  background-color: var(--wp--preset--color--primary-700);
  color: white;
  box-shadow: var(--shd-img);
  transform: scale(0.98);
}

/* --- Variante orange clair --------------------------------------
 * Un cran de spécificité au-dessus du bloc commun,
 * pour ne pas dépendre de l'ordre d'écriture.
 * ---------------------------------------------------------------- */
.wp-block-buttons > .wp-block-button.is-style-secondary-light .wp-block-button__link {
  color: var(--wp--preset--color--neutral-900);
  background-color: var(--wp--preset--color--secondary-500);
}

/* --- Variante brune --------------------------------------------- */
.wp-block-buttons > .wp-block-button.is-style-secondary-dark .wp-block-button__link {
  color: var(--wp--preset--color--neutral-0);
  background-color: var(--wp--preset--color--secondary-800);
}

body:not(.home) figure img {
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);
}

body:not(.home) figure > figcaption.wp-element-caption, .wp-block-gallery.has-nested-images figure.wp-block-image > figcaption.wp-element-caption {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
}

body.single-trive-events figure.aligncenter,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-content figure.aligncenter {
  margin: 0 auto 2rem;
}
body.single-trive-events figure.alignright,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-content figure.alignright {
  margin: 0 0 2rem auto;
}
body.single-trive-events figure figcaption,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-content figure figcaption {
  padding-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
}

body:not(.home) div:not(.wp-block-group) > figure.size-full:not(:has(figure)).alignfull > figcaption.wp-element-caption {
  margin-bottom: 3rem;
  padding-left: 1rem;
}

body:not(.home) figure:not(.alignfull) {
  margin: 1rem 0;
}
body:not(.home) figure:not(.alignfull) img {
  border-radius: var(--rounded-lg);
}

body:not(.home) figure.wp-block-gallery.has-nested-images > figure.wp-block-image:not(.alignfull) {
  padding-top: 0;
  padding-bottom: 0;
}

body:not(.home) div:has(> figure.wp-block-image:nth-child(1) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) {
  margin: 1rem 0 1.5rem;
  display: grid;
  align-items: baseline !important;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
body:not(.home) div:has(> figure.wp-block-image:nth-child(1) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) figure img, body:not(.home) div:has(> figure.wp-block-image:nth-child(1) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) figure figcaption {
  border-radius: var(--rounded-lg);
}
@media screen and (max-width: 1024px) {
  body:not(.home) div:has(> figure.wp-block-image:nth-child(1) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) {
    grid-template-columns: 1fr;
    margin: 5rem 0;
  }
}

body:not(.home) div:has(> figure.wp-block-image:nth-child(n+2) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) {
  margin: 1rem 0 1.5rem;
  display: grid;
  align-items: baseline !important;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}
@media screen and (min-width: 782px) and (max-width: 1199px) {
  body:not(.home) div:has(> figure.wp-block-image:nth-child(n+2) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  body:not(.home) div:has(> figure.wp-block-image:nth-child(n+2) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)) {
    grid-template-columns: 1fr;
    margin: 5rem 0;
    row-gap: 1rem;
  }
}

body:not(.home) div.wp-block-columns:has(> div.wp-block-column > figure + figure):not(:has(> p, > .wp-block-heading)) {
  margin: 4rem 0;
  align-items: baseline !important;
}
@media screen and (min-width: 782px) and (max-width: 1199px) {
  body:not(.home) div.wp-block-columns:has(> div.wp-block-column > figure + figure):not(:has(> p, > .wp-block-heading)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  body:not(.home) div.wp-block-columns:has(> div.wp-block-column > figure + figure):not(:has(> p, > .wp-block-heading)) {
    margin: 5rem 0;
    row-gap: 1rem;
  }
}

body:not(.home) .wp-block-gallery.has-nested-images.columns-default {
  display: grid;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1024px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
body:not(.home) .wp-block-gallery.has-nested-images.columns-default figure::before, body:not(.home) .wp-block-gallery.has-nested-images.columns-default figure img, body:not(.home) .wp-block-gallery.has-nested-images.columns-default figure figcaption {
  border-radius: var(--rounded-lg);
}
body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1025px) and (max-width: 1599px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(2)) {
    margin: 0 0 1rem;
    grid-template-columns: 1fr;
  }
}
body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(n+3)) {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1025px) and (max-width: 1599px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(n+3)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default:has(> figure.wp-block-image:nth-child(n+3)) {
    grid-template-columns: 1fr;
  }
}
body:not(.home) .wp-block-gallery.has-nested-images.columns-default {
  gap: 1.5rem;
}
body:not(.home) .wp-block-gallery.has-nested-images.columns-default > figure.wp-block-image:not(#individual-image) {
  width: 100% !important;
}
@media screen and (min-width: 782px) and (max-width: 1199px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default > figure.wp-block-image:not(#individual-image) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 781px) {
  body:not(.home) .wp-block-gallery.has-nested-images.columns-default > figure.wp-block-image:not(#individual-image) {
    grid-template-columns: 1fr;
    margin: 0.5rem 0;
  }
}

body:not(.home) .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8666666667), rgba(0, 0, 0, 0));
  font-weight: 600;
  letter-spacing: 0.05rem;
  padding: 4em 0.6em 1em;
}

@media screen and (max-width: 600px) {
  body:not(.home) div:has(> figure.wp-block-image:nth-child(1) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)),
  body:not(.home) div:has(> figure.wp-block-image:nth-child(n+2) + figure.wp-block-image):not(:has(> p, > .wp-block-heading)),
  body:not(.home) div.wp-block-columns:has(> div.wp-block-column > figure + figure):not(:has(> p, > .wp-block-heading)) {
    margin: 0;
  }
}
/**
 * Navigation et header
 */
/* Breakpoint de bascule burger (WordPress = 600px par défaut) */
header:has(nav) .mobile-header-logo, header:has(nav) .mobile-header-title {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  header:has(nav) .mobile-header-logo, header:has(nav) .mobile-header-title {
    display: flex;
    align-items: center;
  }
  header:has(nav) .mobile-header-logo img, header:has(nav) .mobile-header-title img {
    height: 2rem;
    width: auto;
  }
}
header:has(nav) .mobile-header-title {
  padding-left: 0.6rem;
}
header:has(nav) .mobile-header-title a {
  font-size: 1.5rem;
  font-family: var(--wp--preset--font-family--truculenta);
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary-900);
  text-decoration: none;
}
header:has(nav) ul,
header:has(nav) li,
header:has(nav) p {
  padding-bottom: 0;
}
@media screen and (max-width: 1023.98px) {
  header:has(nav) > div {
    padding: 0 1rem !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
    width: 100%;
    background-color: white;
    box-shadow: var(--shd-btns);
  }
}
header:has(nav) nav.wp-block-navigation a:where(:not(.wp-element-button)) {
  font-family: var(--wp--preset--font-family--ysabeau-office);
}
header:has(nav) nav.wp-block-navigation .wp-block-site-logo a:hover {
  animation: rotate 0.4s forwards;
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container-open::after {
  content: "MENU";
  padding-left: 0.2rem;
  padding-top: 0.1rem;
  padding-bottom: 2px;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
header:has(nav) nav.wp-block-navigation {
  /* =========================================
     BASCULE DU BURGER : 600px → 1024px
     Entre 600px et 1023px, WP repasse en mode
     desktop. On force le mode overlay.
     ========================================= */
}
@media screen and (min-width: 600px) and (max-width: 1023.98px) {
  header:has(nav) nav.wp-block-navigation {
    /* Menu inline masqué tant qu'il n'est pas ouvert */
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none;
  }
  header:has(nav) nav.wp-block-navigation {
    /* Bouton hamburger visible */
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }
}
header:has(nav) nav.wp-block-navigation {
  /* =========================================
     OVERLAY OUVERT (toutes tailles < 1024px)
     ========================================= */
}
@media screen and (max-width: 1023.98px) {
  header:has(nav) nav.wp-block-navigation {
    justify-content: flex-end;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed;
    box-sizing: border-box;
    inset: 0;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    z-index: 100000;
    overflow: auto;
    height: 100svh;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open div {
    height: 100%;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    display: block;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding-top: 0rem;
    flex: 1;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul {
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul > li {
    animation: slideInX 0.5s forwards;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li {
    padding-bottom: 1rem;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li ul li {
    padding-bottom: 2rem;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child ul.wp-block-navigation__submenu-container {
    padding: 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child ul.wp-block-navigation__submenu-container li {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-radius: 0.5rem;
    margin: 0.5rem 0 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child ul.wp-block-navigation__submenu-container li:first-of-type {
    margin-top: 0.2rem;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child ul.wp-block-navigation__submenu-container li {
    padding: 0.3rem 0.7rem;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child button {
    position: relative;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content ul li.has-child button::after {
    content: ": ";
    position: absolute;
    right: -15px;
    top: 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
    /* Liens */
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    margin-left: 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
    /* Sous-menu */
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
    margin: 0;
    padding-left: 0;
    border-radius: 0;
  }
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container > .wp-block-navigation-item > .wp-block-navigation-item__content {
    padding: 0;
  }
}
header:has(nav) nav.wp-block-navigation {
  /* =========================================
     MENU HORIZONTAL (≥ 1024px)
     ========================================= */
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container-content {
  gap: 1.5rem;
}
@media screen and (min-width: 1023.98px) and (max-width: 1200px) {
  header:has(nav) nav.wp-block-navigation .wp-block-navigation__responsive-container-content {
    gap: 0.9rem;
  }
}
header:has(nav) nav.wp-block-navigation {
  /* =========================================
     STYLES COMMUNS
     ========================================= */
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--ysabeau-office);
  font-size: 1.1rem;
  padding-left: 0.2rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}
@media screen and (min-width: 1023.98px) and (max-width: 1200px) {
  header:has(nav) nav.wp-block-navigation .wp-block-navigation-item__content {
    font-size: 1rem;
  }
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation-item__content:hover {
  text-decoration: none;
  opacity: 0.6;
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation__submenu-container {
  padding: 15px 0;
  margin-top: 10px;
  margin-left: 1.4rem;
  border-radius: 0 1rem 1rem 1rem;
}
header:has(nav) nav.wp-block-navigation .wp-block-navigation__submenu-container li a {
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
}
header:has(nav) nav.wp-block-navigation li.wp-block-navigation-submenu button.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle {
  font-weight: 700;
}
header:has(nav) nav.wp-block-navigation li.wp-block-navigation-submenu button.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle:hover {
  color: var(--wp--preset--color--neutral-900);
  opacity: 0.6;
}
header:has(nav) nav.wp-block-navigation li.wp-block-navigation-submenu button.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle:focus {
  opacity: 1;
}
header:has(nav) nav.wp-block-navigation li.wp-block-navigation-submenu button.wp-block-navigation-item__content.wp-block-navigation-submenu__toggle + .wp-block-navigation__submenu-icon {
  margin-left: -0.4em;
  pointer-events: none;
}
header:has(nav) nav.wp-block-navigation :where(.wp-site-blocks :focus) {
  outline-width: 0;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  inset-block-end: 0rem;
  inset-inline-end: 0rem;
  z-index: 100;
  display: grid;
  place-items: center;
  inline-size: 3rem;
  block-size: 3rem;
  border: none;
  border-radius: 50% 0 0 0;
  background: var(--wp--preset--color--primary-800);
  box-shadow: -3px 0px 3px 0px rgba(0, 0, 0, 0.1), -5px 0px 7px 1px rgba(0, 0, 0, 0.15);
  color: white;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top[hidden] {
  display: none;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top.is-visible:hover {
  background: var(--wp--preset--color--primary-700);
}
.back-to-top:focus-visible, .back-to-top:focus {
  outline: 0;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
/**
 * Section "Qui suis-je"
 */
div.quisuisje {
  width: 100%;
  max-width: 100%;
  margin-bottom: 4rem;
}
div.quisuisje > div.wp-block-column:last-child {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  div.quisuisje {
    padding: 0;
    gap: 0;
    margin-bottom: 2rem;
  }
  div.quisuisje > div.wp-block-column:first-child > div {
    margin-bottom: 1rem !important;
  }
  div.quisuisje > div.wp-block-column:first-child > div h2.wp-block-heading {
    margin-top: 0;
  }
  div.quisuisje > div.wp-block-column:first-child > div > div:last-of-type {
    padding: 0.5rem 0 1.5rem !important;
    margin: 0 !important;
  }
  div.quisuisje > div.wp-block-column:last-child {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 781px) {
  div.quisuisje {
    padding: 40px 0;
    gap: 0;
  }
  div.quisuisje > div.wp-block-column:last-child {
    display: flex;
    justify-content: center;
  }
  div.quisuisje > div.wp-block-column:last-child img {
    max-width: 40vw;
  }
}
@media screen and (min-width: 782px) and (max-width: 991px) {
  div.quisuisje {
    padding: 40px 0;
  }
  div.quisuisje > div.wp-block-column:first-child {
    flex-basis: calc(50% - 24px);
  }
  div.quisuisje > div.wp-block-column:last-child {
    flex-basis: calc(50% - 24px);
  }
}
@media screen and (min-width: 992px) and (max-width: 1023px) {
  div.quisuisje {
    padding: 40px 0;
  }
  div.quisuisje > div.wp-block-column:first-child {
    flex-basis: calc(67% - 24px);
  }
  div.quisuisje > div.wp-block-column:last-child {
    flex-basis: calc(33% - 24px);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  div.quisuisje > div.wp-block-column:first-child {
    flex-basis: calc(57% - 24px);
  }
  div.quisuisje > div.wp-block-column:last-child {
    flex-basis: calc(43% - 24px);
  }
}
@media screen and (min-width: 1200px) {
  div.quisuisje {
    width: 1200px;
  }
  div.quisuisje > div.wp-block-column:first-child {
    flex-basis: calc(67% - 24px);
  }
  div.quisuisje > div.wp-block-column:last-child {
    flex-basis: calc(33% - 24px);
    padding-top: 10px;
  }
}

div.cours-uku {
  gap: 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 782px) {
  div.cours-uku {
    margin-bottom: 4rem;
  }
}
div.cours-uku.wp-block-columns.has-background {
  padding: 0;
}
@media screen and (max-width: 782px) {
  div.cours-uku.wp-block-columns.has-background > div:last-of-type {
    padding-bottom: 1rem;
    max-width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
  }
}
div.cours-uku.wp-block-columns.has-background > div:last-of-type > div .wp-block-buttons {
  margin: 10px 0 20px;
}
@media screen and (max-width: 782px) {
  div.cours-uku.wp-block-columns.has-background > div:last-of-type > div {
    padding: 0 !important;
    align-items: flex-start;
  }
  div.cours-uku.wp-block-columns.has-background > div:last-of-type > div p.has-text-align-center {
    text-align: left;
  }
  div.cours-uku.wp-block-columns.has-background > div:last-of-type > div > div:last-of-type {
    padding: 0.5rem 0 1.5rem !important;
    margin: 0 !important;
  }
}

div.faq {
  margin-top: 7rem;
  margin-bottom: 8rem;
}
div.faq .wp-block-columns-is-layout-flex {
  gap: 1.5rem;
  max-width: 100% !important;
}
div.faq .wp-block-columns-is-layout-flex > .wp-block-column {
  align-self: stretch !important;
  align-content: center;
  flex: 1;
}
div.faq .wp-block-columns-is-layout-flex > .wp-block-column p {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  div.faq.alignfull {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  div.faq {
    margin-bottom: 0rem;
  }
  div.faq figure:first-of-type {
    margin-bottom: 2rem !important;
  }
  div.faq figure:last-of-type {
    margin-top: 2rem !important;
  }
  div.faq > div:last-of-type {
    padding: 1rem 0 !important;
  }
}

@media screen and (max-width: 600px) {
  body:has(.page-faq) h1 {
    padding-bottom: 0;
  }
}

body:has(.page-faq) .is-light {
  margin-top: 3rem;
}

body:has(.page-faq) .wp-block-columns-is-layout-flex {
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  body:has(.page-faq) .wp-block-columns-is-layout-flex {
    gap: 0rem;
  }
}

.page-faq details.wp-block-details {
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .page-faq details.wp-block-details {
    margin-bottom: 0;
  }
}
.page-faq details.wp-block-details > summary {
  margin-bottom: 1rem;
  width: 100%;
}
.page-faq details.wp-block-details > p.wp-block-paragraph {
  padding-top: 0;
}
.page-faq details.wp-block-details > .wp-block-buttons {
  padding: 0.3rem 1rem 1rem;
}

@media screen and (max-width: 1200px) {
  .page-faq .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 0;
  }
}
/**
 * Tribe Events Widget
 */
body.tribe-events-page-template h1 {
  text-align: center;
}

body.tribe-events-page-template a, body.home a.tribe-events-widget-events-list__event-title-link {
  text-decoration: none;
}

body.tribe-events-page-template.single .tribe-block a {
  text-decoration: underline;
}
body.tribe-events-page-template.single .tribe-block a:hover {
  text-decoration: none;
}

body.tribe-events-page-template figure {
  max-width: 100% !important;
}

.tribe-events-single-event-description {
  border-top: 1px solid var(--color-neutral-300);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--color-neutral-300);
}
.tribe-events-single-event-description p,
.tribe-events-single-event-description li {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--wp--style--global--content-size);
  font-size: var(--wp--preset--font-size--medium) !important;
}
.tribe-events-single-event-description h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0;
  max-width: var(--wp--style--global--content-size);
}

.tribe-block.tec-block__archive-events:has(.tribe-events-calendar-month) {
  max-width: 100%;
}

body.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-details {
  width: 100%;
}

/* ===== ÉVÉNEMENTS ===== */
@media screen and (max-width: 576px) {
  div.events {
    padding: 0;
    margin-bottom: 0;
  }
}

/* ===== CONTENEUR ===== */
div.tribe-compatibility-container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

/* ===== WIDGET ===== */
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tribe-events-widget .tribe-events-widget-events-list__header {
  margin-bottom: 0;
}
.tribe-events-widget .tribe-events-widget-events-list {
  display: flex;
  flex-direction: column;
}
.tribe-events-widget .tribe-events-widget-events-list__events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  gap: 35px;
}
.tribe-events-widget .tribe-events-widget-events-list__events:has(> :last-child:nth-child(1)) {
  grid-template-columns: minmax(0, 600px);
}
.tribe-events-widget .tribe-events-widget-events-list__events:has(> :last-child:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 782px) {
  .tribe-events-widget .tribe-events-widget-events-list__events:has(> :last-child:nth-child(2)) {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.tribe-events-widget .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row {
  margin: 0;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .tribe-events-widget .tribe-events-widget-events-list__events {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 782px) {
  .tribe-events-widget .tribe-events-widget-events-list__events {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.tribe-events-widget {
  /* Date badge */
}
.tribe-events-widget .tribe-events-widget-events-list__event-date-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--tertiary-400);
  padding: 10px;
  border-radius: 0.7rem 0 0 0.7rem;
  text-align: center;
}
.tribe-events-widget .tribe-events-widget-events-list__event-date-tag .tribe-events-widget-events-list__event-date-tag-datetime {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.tribe-events-widget .tribe-events-widget-events-list__event-date-tag-month,
.tribe-events-widget .tribe-events-widget .tribe-events-widget-events-list__event-date-tag-month {
  font-family: var(--wp--preset--font-family--ysabeau-office) !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  font-size: var(--wp--preset--font-size--xx-small) !important;
  text-transform: uppercase;
  margin-bottom: -0.7rem !important;
}
.tribe-events-widget .tribe-events-widget-events-list__event-date-tag-daynum.tribe-common-h2 {
  font-family: var(--wp--preset--font-family--truculenta) !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  margin: 0.5rem 0 0 !important;
}
.tribe-events-widget {
  /* Event content */
}
.tribe-events-widget .tribe-events-widget-events-list__event-datetime-wrapper {
  margin-bottom: 0.7rem !important;
}
@media screen and (max-width: 1024px) {
  .tribe-events-widget .tribe-events-widget-events-list__event-datetime-wrapper {
    margin-bottom: 0.3rem !important;
  }
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper {
  border-radius: 0 0.7rem 0.7rem 0;
  padding: 2rem;
  background-color: white;
  width: calc(100% - 4rem);
}
@media screen and (max-width: 1024px) {
  .tribe-events-widget .tribe-events-widget-events-list__event-wrapper {
    padding: 1.5rem 1rem;
  }
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper h3 {
  line-height: 0.9;
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper a.tribe-common-anchor-thin {
  font-family: var(--wp--preset--font-family--truculenta);
  font-weight: 600;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1;
  text-wrap: pretty;
  transition: none;
}
@media screen and (max-width: 576px) {
  .tribe-events-widget .tribe-events-widget-events-list__event-wrapper a.tribe-common-anchor-thin {
    font-size: 1.4rem;
  }
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper a.tribe-common-anchor-thin:hover {
  opacity: 1;
  border: 0;
}
.tribe-events-widget .tribe-events-widget-events-list__event-wrapper a.tribe-common-anchor-thin:focus {
  outline: 0;
}
.tribe-events-widget .tribe-events-widget-events-list__view-more-link,
.tribe-events-widget .tribe-events-widget .tribe-events-widget-events-list__view-more-link:visited {
  color: var(--wp--preset--color--primary-700) !important;
  text-decoration: underline;
}
.tribe-events-widget .tribe-events-widget-events-list__view-more-link:hover, .tribe-events-widget .tribe-events-widget-events-list__view-more-link:focus,
.tribe-events-widget .tribe-events-widget .tribe-events-widget-events-list__view-more-link:visited:hover,
.tribe-events-widget .tribe-events-widget .tribe-events-widget-events-list__view-more-link:visited:focus {
  color: var(--wp--preset--color--primary-700);
  text-decoration: none;
  border: 0;
  outline: 0;
}

/* ===== FLAT SELECTORS ===== */
.tribe-common h2.tribe-common-h6,
.tribe-common--breakpoint-medium.tribe-common .tribe-common-h6 {
  font-size: var(--wp--preset--font-size--xx-large) !important;
  line-height: 1.125 !important;
  font-family: var(--wp--preset--font-family--truculenta);
  text-align: center;
  color: var(--wp--preset--color--primary-800);
  font-weight: 600;
  padding: 20px 0 20px;
}
@media screen and (max-width: 576px) {
  .tribe-common h2.tribe-common-h6,
  .tribe-common--breakpoint-medium.tribe-common .tribe-common-h6 {
    padding-bottom: 1rem;
  }
}

.tribe-common .tribe-common-g-row {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tribe-common--breakpoint-medium.tribe-events-widget .tribe-events-widget-events-list__event-row:last-child {
  margin-bottom: var(--tec-spacer-4);
}

.tribe-common .tribe-common-b3--min-medium {
  font-size: var(--wp--preset--font-size--x-small) !important;
  line-height: 1 !important;
}

.tribe-common .tribe-common-b2--min-medium {
  text-align: center;
}

.tribe-block .tribe-common .tribe-common-b2 {
  font-family: var(--wp--preset--font-family--ysabeau-office);
}

.tribe-common .tribe-common-h2 {
  font-family: var(--wp--preset--font-family--truculenta);
  font-size: var(--wp--preset--font-size--large) !important;
  line-height: 2.5rem !important;
  letter-spacing: 0.15rem;
}

.tribe-common .tribe-common-anchor-thin {
  transition: none;
}

/* EVENTS Archive */
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 1rem;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-tribe_events .tribe-events-l-container {
    padding: 2rem 1.5rem;
  }
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-top-bar__nav-list button:disabled {
  opacity: 0.2;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-form-control-text__input,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input,
body.post-type-archive-tribe_events .tribe-common .tribe-common-form-control-text__label {
  font-family: var(--wp--preset--font-family--ysabeau-office);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-c-btn,
body.post-type-archive-tribe_events .tribe-common button.tribe-common-c-btn,
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-view-selector__list-item-text,
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border-small,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-c-btn-border-small,
body.post-type-archive-tribe_events .tribe-common .tribe-common-h3,
body.post-type-archive-tribe_events .tribe-common .tribe-common-h7,
body.post-type-archive-tribe_events .tribe-common .tribe-common-h8 {
  font-family: var(--wp--preset--font-family--truculenta);
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-b2 {
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-search__button {
  margin-left: 1rem;
  background-color: var(--wp--preset--color--primary-700);
  box-shadow: var(--shd-btns);
  border-radius: 300px;
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-search__button:hover, body.post-type-archive-tribe_events .tribe-events .tribe-events-c-search__button:focus {
  background-color: var(--wp--preset--color--primary-700);
  border-radius: 300px;
  box-shadow: var(--shd-img);
  transform: scale(0.98);
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-g-row {
  max-width: 100%;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-g-row .tribe-common-g-col h4 {
  text-align: left;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-details {
  width: 100%;
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-subscribe-dropdown {
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-c-subscribe-dropdown li a {
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border {
  border-color: var(--wp--preset--color--primary-700);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border .tribe-common-c-svgicon {
  color: var(--wp--preset--color--primary-700);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text {
  font-family: var(--wp--preset--font-family--truculenta);
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  color: var(--wp--preset--color--primary-700);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text:hover, body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text:focus {
  background-color: var(--wp--preset--color--primary-700);
  outline: 0;
  color: white;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:hover, body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:focus {
  background-color: var(--wp--preset--color--primary-700);
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:hover .tribe-common-c-svgicon, body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:focus .tribe-common-c-svgicon {
  color: white;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:hover button.tribe-events-c-subscribe-dropdown__button-text, body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:focus button.tribe-events-c-subscribe-dropdown__button-text {
  color: white;
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:has(button.tribe-events-c-subscribe-dropdown__button-text:focus) .tribe-common-c-svgicon {
  color: white;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__prev,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages .tribe-common-b2 a,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages__message-list-item-link a,
body.post-type-archive-tribe_events .tribe-block .tribe-common .tribe-common-b2 a {
  color: var(--wp--preset--color--primary-700);
  font-family: var(--wp--preset--font-family--truculenta);
  font-weight: 700;
  position: relative;
  font-size: var(--wp--preset--font-size--small);
  text-underline-offset: 0.4rem;
  border: 0;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next:disabled,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__prev:disabled,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages .tribe-common-b2 a:disabled,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages__message-list-item-link a:disabled,
body.post-type-archive-tribe_events .tribe-block .tribe-common .tribe-common-b2 a:disabled {
  color: black;
  opacity: 0.1;
  text-decoration: none;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next:hover,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__prev:hover,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages .tribe-common-b2 a:hover,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages__message-list-item-link a:hover,
body.post-type-archive-tribe_events .tribe-block .tribe-common .tribe-common-b2 a:hover {
  color: var(--wp--preset--color--primary-700);
  text-decoration: none;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next:focus,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__prev:focus,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages .tribe-common-b2 a:focus,
body.post-type-archive-tribe_events .tribe-common.tribe-events .tribe-events-c-messages__message-list-item-link a:focus,
body.post-type-archive-tribe_events .tribe-block .tribe-common .tribe-common-b2 a:focus {
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-events-c-nav__list-item {
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-h5.tribe-events-calendar-list__event-date-tag-daynum,
body.post-type-archive-tribe_events .tribe-common .tribe-common-h6.tribe-events-calendar-list__event-date-tag-daynum {
  font-family: var(--wp--preset--font-family--truculenta) !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
  font-family: var(--wp--preset--font-family--ysabeau-office) !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  font-size: var(--wp--preset--font-size--xx-small) !important;
  text-transform: uppercase;
  margin-bottom: -0.3 rem !important;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-date-tag,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-events-calendar-list__event-date-tag,
body.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__event-date-tag {
  background-color: var(--wp--preset--color--tertiary-400);
  padding-top: 1rem;
  border-radius: 0.7rem 0 0 0.7rem;
}
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium.tribe-events-calendar-list__event-date-tag-daynum {
  font-size: var(--wp--preset--font-size--large) !important;
}
body.post-type-archive-tribe_events .tribe-common h4.tribe-common-h6,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-h6 {
  padding: 0;
  margin: 0;
}
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:active,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:visited,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:focus,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:hover {
  color: var(--wp--preset--color--primary-700);
  font-family: var(--wp--preset--font-family--truculenta);
  font-weight: 700;
  text-decoration: underline;
  position: relative;
  font-size: var(--wp--preset--font-size--large);
  text-underline-offset: 0.4rem;
  border: 0;
}
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:disabled,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:active:disabled,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:visited:disabled,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:focus:disabled,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:hover:disabled {
  color: black;
  opacity: 0.1;
  text-decoration: none;
}
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:hover,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:active:hover,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:visited:hover,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:focus:hover,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:hover:hover {
  color: var(--wp--preset--color--primary-700);
  text-decoration: none;
}
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:focus,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:active:focus,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:visited:focus,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:focus:focus,
body.post-type-archive-tribe_events .tribe-common a.tribe-common-anchor-thin:hover:focus {
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-common .tribe-events-calendar-month .tribe-common-h7.tribe-events-calendar-month__calendar-event-tooltip-title {
  line-height: 1.1;
  padding: 1rem 0;
}
body.post-type-archive-tribe_events .tooltipster-box .tribe-events-calendar-month__calendar-event-tooltip-datetime.tribe-common-b3,
body.post-type-archive-tribe_events .tooltipster-box .tribe-events-calendar-month__calendar-event-tooltip-datetime,
body.post-type-archive-tribe_events .tooltipster-box .tribe-events-calendar-month__calendar-event-datetime,
body.post-type-archive-tribe_events .tooltipster-box .tribe-events-calendar-month__calendar-event-datetime.tribe-common-b3,
body.post-type-archive-tribe_events .tooltipster-box .tribe-events-calendar-month__calendar-event-tooltip-description.tribe-common-b3,
body.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-month__calendar-event-datetime {
  font-size: var(--wp--preset--font-size--xx-small);
  font-family: var(--wp--preset--font-family--ysabeau-office);
  line-height: 1.1;
}
body.post-type-archive-tribe_events .tooltipster-box .tribe-common-b3.tribe-events-calendar-month__calendar-event-tooltip-description,
body.post-type-archive-tribe_events .tooltipster-box .tribe-common-b3.tribe-events-calendar-month__calendar-event-tooltip-datetime {
  font-size: var(--wp--preset--font-size--xx-small);
  font-family: var(--wp--preset--font-family--ysabeau-office);
}
body.post-type-archive-tribe_events .tribe-common .tribe-events-calendar-month .tribe-common-h4,
body.post-type-archive-tribe_events .tribe-events-calendar-month__day-cell--mobile .tribe-common-h6,
body.post-type-archive-tribe_events .tribe-events-calendar-month__header-column-title.tribe-common-b3 {
  font-family: var(--wp--preset--font-family--truculenta);
}
body.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-month__day-cell--selected {
  background-color: var(--color-primary-600);
}
body.post-type-archive-tribe_events .tribe-common .tribe-common-h6,
body.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-h6 {
  text-align: left;
}
body.post-type-archive-tribe_events .tribe-events-calendar-month-mobile-events__mobile-day.tribe-events-calendar-month-mobile-events__mobile-day--show:focus {
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker abbr[title] {
  text-decoration: none;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day {
  width: 50px;
  height: 50px;
  padding: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day.active, body.post-type-archive-tribe_events .tribe-events .datepicker .day.active::before {
  border-radius: 40px;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day,
body.post-type-archive-tribe_events .tribe-events .datepicker .month,
body.post-type-archive-tribe_events .tribe-events .datepicker .year,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch {
  outline: 0;
  border: 0;
  font-family: var(--wp--preset--font-family--truculenta);
  font-size: var(--wp--preset--font-size--xx-small);
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current {
  font-weight: 700;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day.current, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current::before, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current.active, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current.active::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current.active,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current.active::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current.active,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current.active::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current::before,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current.active,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current.active::before {
  border: 0;
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day.current:focus, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current::before:focus, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current.active:focus, body.post-type-archive-tribe_events .tribe-events .datepicker .day.current.active::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current.active:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .month.current.active::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current.active:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .year.current.active::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current::before:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current.active:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch.current.active::before:focus {
  outline: 0;
  border: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .month:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .year:focus,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch:focus {
  outline: 0;
  border: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .day:hover,
body.post-type-archive-tribe_events .tribe-events .datepicker .month:hover,
body.post-type-archive-tribe_events .tribe-events .datepicker .year:hover,
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch:hover {
  outline: 0;
}
body.post-type-archive-tribe_events .tribe-events .datepicker .datepicker-switch {
  font-size: var(--wp--preset--font-size--medium);
}
body.post-type-archive-tribe_events .tribe-events .datepicker .table-condensed {
  width: 100%;
}

body.post-type-archive-tribe_events .tribe-events-c-breadcrumbs__list li.tribe-events-c-breadcrumbs__list-item {
  font-size: var(--wp--preset--font-size--small);
}
body.post-type-archive-tribe_events .tribe-events-c-breadcrumbs__list li.tribe-events-c-breadcrumbs__list-item a,
body.post-type-archive-tribe_events .tribe-events-c-breadcrumbs__list li.tribe-events-c-breadcrumbs__list-item span {
  font-size: var(--wp--preset--font-size--small);
}

/* EVENT Single Page */
body.single-tribe_events .tribe-block.tec-block__single-event {
  margin-top: 1rem;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template {
  padding: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single {
  font-family: var(--wp--preset--font-family--ysabeau-office);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back {
  margin: 0 0 2rem;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back {
    margin: 0 0 0.5rem;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a:visited {
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--truculenta);
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a:hover,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a:visited:hover {
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a:focus,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-back a:visited:focus {
  outline: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single h1 {
  font-family: var(--wp--preset--font-family--truculenta);
  color: var(--wp--preset--color--primary-800);
  font-size: var(--wp--preset--font-size--xxx-large);
  margin-bottom: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-schedule {
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-schedule {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-schedule > div {
  width: 100%;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single p,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-content {
  font-family: inherit;
  font-size: var(--wp--preset--font-size--medium);
  margin: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-c-subscribe-dropdown,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events .tribe-events-c-subscribe-dropdown {
  margin-top: 2rem;
  margin-bottom: 6rem;
  font-size: var(--wp--preset--font-size--small);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-c-subscribe-dropdown:focus,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events .tribe-events-c-subscribe-dropdown:focus {
  outline: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border {
  border-color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border .tribe-common-c-svgicon {
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text {
  font-family: var(--wp--preset--font-family--truculenta);
  font-size: var(--wp--preset--font-size--small);
  letter-spacing: 0.02rem;
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text:hover, body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border button.tribe-events-c-subscribe-dropdown__button-text:focus {
  background-color: var(--wp--preset--color--primary-700);
  outline: 0;
  color: white;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:hover, body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:focus {
  background-color: var(--wp--preset--color--primary-700);
  outline: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:hover .tribe-common-c-svgicon, body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:focus .tribe-common-c-svgicon {
  color: white;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:hover button.tribe-events-c-subscribe-dropdown__button-text, body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:focus button.tribe-events-c-subscribe-dropdown__button-text {
  color: white;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-common .tribe-common-c-btn-border:has(button.tribe-events-c-subscribe-dropdown__button-text:focus) .tribe-common-c-svgicon {
  color: white;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section::before {
  border: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta {
  width: 100%;
  padding: 0 3rem 1.5rem;
  font-size: var(--wp--preset--font-size--small);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group {
  padding-top: 0;
  flex: none;
  width: 100%;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group .tribe-events-single-section-title {
  font-size: var(--wp--preset--font-size--medium);
  margin-top: 1rem;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--wp--preset--color--primary-800);
  color: var(--wp--preset--color--primary-800);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group a {
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group a:hover {
  color: var(--wp--preset--color--primary-700);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group a:focus {
  outline: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-single-section-title {
  padding-top: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary {
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-neutral-100);
  padding: 0;
  margin-bottom: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details > h2,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer > h2 {
  margin: 1rem 3rem 1rem;
  padding: 1.5rem 0 0.4rem;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details > h2,
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer > h2 {
    margin: 1rem;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  column-gap: 2rem;
  padding: 0 3rem 1rem;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list .tribe-events-meta-label,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list .tribe-events-meta-label {
  font-weight: 600;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list .tribe-events-meta-value,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list .tribe-events-meta-value div,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list .tribe-events-meta-value,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list .tribe-events-meta-value div {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list,
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list {
    flex-direction: column;
    padding: 0 1rem 1rem;
  }
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list li.tribe-events-meta-item,
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list li.tribe-events-meta-item {
    display: block;
    width: 100%;
    padding-bottom: 0.3rem;
  }
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list .tribe-events-meta-label,
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list .tribe-events-meta-label {
    display: inline;
  }
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details .tribe-events-meta-list .tribe-events-meta-value,
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer .tribe-events-meta-list .tribe-events-meta-value {
    display: inline;
  }
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details {
    margin-bottom: 0.5rem;
  }
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-details h2 {
    margin-top: 0;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group.tribe-events-meta-group-organizer > h2 {
  margin-top: 0;
  padding-top: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary abbr[title] {
  text-decoration: none;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-venue {
  width: 30%;
  margin-right: 0;
  padding: 0 3rem 3rem;
  background-color: var(--color-neutral-100);
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-venue {
    width: calc(100% - 2rem);
    padding: 0 1rem 3rem;
    margin-right: var(--wp--preset--spacing--lg);
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-gmap {
  border: 4px solid transparent;
  background-color: var(--color-neutral-100);
  margin: 0;
  width: calc(70% - 6rem - 8px);
  padding: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-gmap .tribe-events-venue-map {
  margin: 0;
  width: 100%;
  height: 100%;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-gmap .tribe-events-venue-map > iframe {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-gmap {
    width: calc(100% - 8px);
  }
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary .tribe-events-meta-group-gmap .tribe-events-venue-map {
    height: 60vw;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary {
  padding: 0;
  margin-top: 0px;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--color-neutral-200);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary .tribe-events-meta-group-venue {
  width: 30%;
  margin-right: 0;
  padding: 0 3rem 2.5rem 3rem;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary .tribe-events-meta-group-venue {
    padding: 0 1rem 2.5rem;
    width: calc(100% - 2rem);
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary .tribe-events-venue-map {
  border: 4px solid transparent;
  margin: 0;
  width: calc(70% - 6rem - 8px);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary .tribe-events-venue-map > iframe {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-pg-template .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.secondary .tribe-events-venue-map {
    width: calc(100% - 8px);
    height: 60vw;
  }
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer {
  margin-top: 4rem;
  padding: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav a {
  color: var(--wp--preset--color--primary-700);
  font-size: var(--wp--preset--font-size--medium);
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav a:hover {
  color: var(--wp--preset--color--primary-700);
  text-decoration: none;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous a::before,
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next a::after {
  display: inline-block;
  text-decoration: none;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous a::before {
  content: "‹";
  margin-right: 0.3em;
}
body.single-tribe_events .tribe-block.tec-block__single-event #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next a::after {
  content: "›";
  margin-left: 0.3em;
}

@media screen and (max-width: 1024px) {
  .tribe-events-single {
    padding-left: var(--wp--preset--spacing--lg);
    padding-right: var(--wp--preset--spacing--lg);
  }
}

@media screen and (max-width: 1024px) {
  .tribe-events .tribe-events-calendar-list__event-wrapper {
    padding: 0;
    padding-left: 1rem;
    width: calc(100% - 1rem);
  }
}

@media screen and (max-width: 1024px) {
  .tribe-events .tribe-events-calendar-day__event {
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }
  .tribe-events .tribe-events-calendar-day__event .tribe-events-calendar-day__event-content.tribe-common-g-col {
    padding: 0 !important;
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  body.post-type-archive-tribe_events .tribe-events-c-nav__prev {
    display: ruby;
  }
}

.wp-block-contact-form-7-contact-form-selector {
  margin: 2rem auto 4rem !important;
  width: calc(100% - 6rem);
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--rounded-lg);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.12);
}
.wp-block-contact-form-7-contact-form-selector form > p {
  padding: 0;
  margin: 0 0 2rem;
  font-size: var(--wp--preset--font-size--medium) !important;
}
@media screen and (max-width: 1024px) {
  .wp-block-contact-form-7-contact-form-selector form > p {
    font-size: var(--ft-siz-medium-mob) !important;
  }
}
.wp-block-contact-form-7-contact-form-selector form > p > label {
  display: block;
  width: 100%;
  color: var(--wp--preset--color--primary-800);
}
.wp-block-contact-form-7-contact-form-selector form > p > label .wpcf7-not-valid-tip {
  font-style: italic;
}
.wp-block-contact-form-7-contact-form-selector form > p > label span {
  display: block;
}
.wp-block-contact-form-7-contact-form-selector form > p > label span input, .wp-block-contact-form-7-contact-form-selector form > p > label span textarea {
  display: flex;
  padding: 0.2rem 1rem 0.5rem 1rem;
  flex: 1;
  min-height: 2rem;
  width: calc(100% - 2rem);
  background-color: rgba(0, 0, 0, 0.03);
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--wp--preset--font-family--ysabeau-office);
  font-size: var(--wp--preset--font-size--large) !important;
}
@media screen and (max-width: 1024px) {
  .wp-block-contact-form-7-contact-form-selector form > p > label span input, .wp-block-contact-form-7-contact-form-selector form > p > label span textarea {
    font-size: var(--ft-siz-large-mob) !important;
  }
}
.wp-block-contact-form-7-contact-form-selector form > p > label span input.wpcf7-not-valid, .wp-block-contact-form-7-contact-form-selector form > p > label span textarea.wpcf7-not-valid {
  background-color: rgba(255, 0, 0, 0.1);
}
.wp-block-contact-form-7-contact-form-selector form > p > label span input.wpcf7-not-valid:focus, .wp-block-contact-form-7-contact-form-selector form > p > label span textarea.wpcf7-not-valid:focus {
  outline: 0;
  border-bottom: 2px solid var(--color-danger-500);
}
.wp-block-contact-form-7-contact-form-selector form > p > label span input:focus, .wp-block-contact-form-7-contact-form-selector form > p > label span textarea:focus {
  outline: 0;
  border-bottom: 2px solid var(--wp--preset--color--primary-800);
}
.wp-block-contact-form-7-contact-form-selector form input[type=submit] {
  cursor: pointer;
  border-radius: 9999px;
  font-family: var(--wp--preset--font-family--truculenta);
  color: white;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--medium) !important;
  background: var(--wp--preset--color--primary-700);
  letter-spacing: 0.05rem;
  box-shadow: var(--shd-btns);
  transition: opacity 0.3s ease;
  padding: 0.6rem 2rem;
  outline: 0;
  border: 0;
}
.wp-block-contact-form-7-contact-form-selector form input[type=submit]:hover {
  background-color: var(--wp--preset--color--primary-700);
  box-shadow: var(--shd-img);
  transform: scale(0.98);
}
@media screen and (max-width: 1024px) {
  .wp-block-contact-form-7-contact-form-selector form input[type=submit] {
    font-size: var(--ft-siz-large-mob) !important;
  }
}
@media screen and (max-width: 782px) {
  .wp-block-contact-form-7-contact-form-selector {
    margin: 1rem auto 4rem !important;
    padding: 1rem;
    width: calc(100% - 2rem);
  }
  .wp-block-contact-form-7-contact-form-selector form > p > label span textarea {
    min-height: 1rem;
    height: 10rem;
  }
}

@media screen and (max-width: 782px) {
  body:has(.wp-block-contact-form-7-contact-form-selector) .wp-block-columns:not(.is-not-stacked-on-mobile):has(.wp-block-social-links) > .wp-block-column {
    flex-basis: 0 !important;
  }
  body:has(.wp-block-contact-form-7-contact-form-selector) .wp-block-columns:not(.is-not-stacked-on-mobile):has(.wp-block-social-links) > .wp-block-column svg, body:has(.wp-block-contact-form-7-contact-form-selector) .wp-block-columns:not(.is-not-stacked-on-mobile):has(.wp-block-social-links) > .wp-block-column span {
    font-size: 1.4rem;
  }
}
/**
 * Footer
 */
footer {
  width: 100%;
  background-color: var(--wp--preset--color--neutral-900);
  margin-top: 5rem;
  color: white;
}
footer > div.has-global-padding {
  width: 100%;
  padding-top: 1rem !important;
}
@media screen and (max-width: 576px) {
  footer > div.has-global-padding {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  footer > div.has-global-padding > .alignfull {
    margin-right: -20px;
    margin-left: -20px;
  }
}
footer > div.has-global-padding > div:first-of-type {
  max-width: 1600px;
}
@media screen and (max-width: 576px) {
  footer > div.has-global-padding > div:first-of-type {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
}
footer > div.has-global-padding > div:first-of-type > div:first-child {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
footer > div.has-global-padding > div:first-of-type > div:first-child p {
  padding-bottom: 0rem;
}
@media screen and (max-width: 576px) {
  footer > div.has-global-padding > div:first-of-type > div:first-child {
    padding: 2rem 0 0;
    align-items: center;
  }
}
footer > div.has-global-padding > div:first-of-type > div:first-child {
  flex: 1;
}
footer > div.has-global-padding > div:first-of-type > div:first-child h2 {
  color: var(--wp--preset--color--tertiary-400);
  padding-top: 0;
  padding-bottom: 0.8rem;
}
footer > div.has-global-padding > div:first-of-type > div:first-child h2.wp-block-site-title a {
  font-family: var(--wp--preset--font-family--ysabeau-office);
  text-underline-offset: 0.4rem;
}
@media screen and (max-width: 576px) {
  footer > div.has-global-padding > div:first-of-type > div:first-child h2.wp-block-site-title a {
    text-align: center;
  }
}
footer > div.has-global-padding > div:first-of-type > div:last-child ul.wp-block-social-links {
  padding-bottom: 0;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  footer > div.has-global-padding > div:first-of-type > div:last-child ul.wp-block-social-links {
    flex-direction: row;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
footer > div.has-global-padding > div:first-of-type > div:last-child ul.wp-block-social-links li.wp-social-link a {
  font-size: 2.1rem;
  font-family: var(--wp--preset--font-family--ysabeau-office);
  margin-bottom: 0.5rem;
}
footer > div > div:last-child {
  border-top: 1px solid var(--wp--preset--color--tertiary-500);
  border-bottom: 1px solid var(--wp--preset--color--tertiary-500);
  padding-bottom: 1rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
footer > div > div:last-child > p {
  display: none;
}
@media screen and (max-width: 575px) {
  footer > div > div:last-child {
    padding: 0 2.5rem !important;
  }
}
@media screen and (min-width: 576px) {
  footer > div > div:last-child {
    padding: 0.5rem 2.5rem 0.8rem !important;
    margin-top: 1rem !important;
  }
}
@media screen and (max-width: 576px) {
  footer > div > div:last-child.has-global-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  footer > div > div:last-child.has-global-padding > .alignfull {
    margin-right: -15px;
    margin-left: -15px;
  }
}
footer > div > div:last-child nav {
  width: 100%;
  color: var(--wp--preset--color--tertiary-500);
}
footer > div > div:last-child nav a:focus {
  outline: 0;
}
footer > div > div:last-child nav ul.wp-block-navigation {
  width: 100%;
}
footer > div > div:last-child nav ul.wp-block-navigation li.wp-block-navigation-item {
  width: 100%;
}
footer > div > div:last-child nav ul.wp-block-navigation li.wp-block-navigation-item a.wp-block-navigation-item__content {
  width: 100%;
  font-family: var(--wp--preset--font-family--ysabeau-office);
  font-size: 0.95rem;
  letter-spacing: 0.4rem;
  margin-left: 0.4rem;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 576px) {
  footer > div > div:last-child nav ul.wp-block-navigation li.wp-block-navigation-item a.wp-block-navigation-item__content {
    letter-spacing: 0.2rem;
    margin-left: 0.2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

/**
 * Surcharges typographiques mobiles
 *
 * À insérer dans ton _typography.scss existant, ou à importer après lui.
 * Breakpoint : $wp-breakpoint-mobile (600px)
 *
 * Le !important est nécessaire : WordPress injecte les tailles de theme.json
 * sous forme de styles inline sur les éléments, avec une spécificité élevée.
 */
@media screen and (max-width: 600px) {
  /* --- Titres ------------------------------------------------- */
  h1,
  .wp-block-post-title {
    font-size: var(--ft-siz-3x-large-mob) !important;
  }
  h2, h2.wp-block-heading {
    font-size: var(--ft-siz-2x-large-mob) !important;
    padding-top: 0;
  }
  h3, h3.wp-block-heading {
    font-size: var(--ft-siz-x-large-mob) !important;
    margin-top: 1rem;
  }
  h4 {
    font-size: var(--ft-siz-large-mob) !important;
  }
  h5 {
    font-size: var(--ft-siz-small-mob) !important;
  }
  /* --- Corps de texte ------------------------------------------ */
  body,
  p,
  li,
  .is-style-text-subtitle {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  ul.wp-block-list, ol.wp-block-list {
    padding-inline-start: 1.4rem;
  }
  ul.wp-block-list li > ul.wp-block-list, ol.wp-block-list li > ul.wp-block-list {
    padding-inline-start: 1.4rem;
  }
  /* --- Légendes ------------------------------------------------ */
  figcaption,
  .wp-element-caption,
  body:not(.home) div:not(.wp-block-group) > figure.size-full:not(:has(figure)).alignfull > figcaption.wp-element-caption {
    font-size: var(--ft-siz-xx-small-mob) !important;
    padding-left: var(--wp--preset--spacing--lg);
    padding-right: var(--wp--preset--spacing--lg);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  body:not(.home) div:not(.wp-block-group) > figure.size-full:not(:has(figure)).alignfull > figcaption.wp-element-caption {
    margin-bottom: 2rem;
  }
  /* --- Classes de taille WordPress ------------------------------
   * Ces classes sont posées manuellement dans l'éditeur.
   * Elles doivent suivre la même bascule que le reste.
   * ------------------------------------------------------------- */
  .wp-block-button__link {
    font-size: var(--ft-siz-large-mob) !important;
    line-height: 1.1 !important;
  }
  .has-xx-small-font-size {
    font-size: var(--ft-siz-xx-small-mob) !important;
  }
  .has-x-small-font-size {
    font-size: var(--ft-siz-x-small-mob) !important;
  }
  .has-small-font-size {
    font-size: var(--ft-siz-small-mob) !important;
    line-height: 1.2;
  }
  .has-medium-font-size {
    font-size: var(--ft-siz-medium-mob) !important;
    line-height: 1.2;
  }
  .has-medium-font-size.wp-block-button__link {
    font-size: var(--ft-siz-large-mob) !important;
  }
  .has-large-font-size {
    font-size: var(--ft-siz-large-mob) !important;
  }
  .has-x-large-font-size {
    font-size: var(--ft-siz-x-large-mob) !important;
  }
  .has-xx-large-font-size {
    font-size: var(--ft-siz-2x-large-mob) !important;
  }
  .has-xxx-large-font-size {
    font-size: var(--ft-siz-3x-large-mob) !important;
  }
  /* --- Ajustements d'espacement -------------------------------- */
  .wp-block-quote,
  .is-layout-flex .wp-block-quote,
  .wp-block-pullquote blockquote {
    padding: 1.5rem 0 1.5rem 1.5rem;
  }
  .wp-block-quote p,
  .is-layout-flex .wp-block-quote p,
  .wp-block-pullquote blockquote p {
    font-size: var(--ft-siz-large-mob) !important;
  }
  .wp-block-pullquote blockquote {
    padding: 1.5rem;
  }
  pre.wp-block-verse {
    padding: 1.5rem 1.5rem;
  }
  .wp-block-cover,
  .is-layout-flex > div.wp-block-cover {
    padding: 1.5rem;
  }
  /* ----------------------------------- */
  details {
    margin-bottom: 0;
  }
  details summary {
    padding-left: 0;
  }
  /* -----TRIBE----------------------------------------- */
  body.home .tribe-events-widget .tribe-events-widget-events-list__event-date-tag-month {
    font-size: 0.8rem !important;
  }
  body.home .tribe-events-widget .tribe-events-widget-events-list__event-date-tag-daynum {
    font-size: var(--ft-siz-2x-large-mob) !important;
  }
  body.home .tribe-common .tribe-common-b3--min-medium {
    font-size: 1rem !important;
  }
  body.home .tribe-events-widget .tribe-events-widget-events-list__event-wrapper a.tribe-common-anchor-thin {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.home .tribe-common h2.tribe-common-h6 {
    font-size: var(--ft-siz-2x-large-mob) !important;
  }
  body.home .tribe-common .tribe-common-b2--min-medium {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.single-tribe_events .tribe-events-back a, body.single-tribe_events .tribe-events-sub-nav a {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.single-tribe_events li.tribe-events-meta-list {
    font-size: var(--ft-siz-small-mob) !important;
  }
  body.single-tribe_events .tribe-events-schedule {
    font-size: var(--ft-siz-small-mob) !important;
  }
  body.single-tribe_events .tribe-events-single p {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.single-tribe_events button.tribe-events-c-subscribe-dropdown__button-text {
    font-size: var(--ft-siz-small-mob) !important;
  }
  body.single-tribe_events .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group .tribe-events-single-section-title {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.single-tribe_events .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group li, body.single-tribe_events .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group p {
    font-size: var(--ft-siz-x-small-mob) !important;
    line-height: 1.1;
  }
  body.single-tribe_events .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group li .tribe-events-meta-label, body.single-tribe_events .tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group p .tribe-events-meta-label {
    display: block;
    padding-bottom: 0.2rem;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-list__month-separator-text,
  body.post-type-archive-tribe_events .tribe-events-c-top-bar__datepicker-time {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-list__event-date-tag-daynum {
    font-size: var(--ft-siz-x-large-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
    font-size: 0.8rem !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-list__event-datetime-wrapper.tribe-common-b2,
  body.post-type-archive-tribe_events .tribe-events-calendar-month-mobile-events__mobile-event-datetime.tribe-common-b2 {
    font-size: var(--ft-siz-small-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-header__messages--mobile.tribe-common-b2 {
    font-size: var(--ft-siz-xx-small-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-header__messages--mobile.tribe-common-b2 a {
    font-size: 1.1em !important;
  }
  body.post-type-archive-tribe_events address.tribe-common-b2,
  body.post-type-archive-tribe_events .tribe-common-b2 .tribe-events-calendar-day__event-datetime {
    font-size: var(--ft-siz-x-small-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-list__event-datetime {
    font-size: var(--ft-siz-xx-small-mob) !important;
  }
  body.post-type-archive-tribe_events h4.tribe-events-calendar-list__event-title a {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.post-type-archive-tribe_events h2.tribe-events-calendar-day__time-separator-heading {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-nav__prev, body.post-type-archive-tribe_events .tribe-events-c-nav__next {
    font-size: var(--ft-siz-xx-small-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-nav__today.tribe-common-b2 {
    font-size: var(--ft-siz-xx-small-mob) !important;
    text-align: center;
  }
  body.post-type-archive-tribe_events .tribe-events-c-view-selector__list-item-text {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.post-type-archive-tribe_events .datepicker .month, body.post-type-archive-tribe_events .datepicker-switch {
    font-size: var(--ft-siz-large-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-month__header-column-title.tribe-common-b3 {
    font-size: var(--ft-siz-xx-small-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-month__day-cell--mobile .tribe-common-h6 {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-c-day-marker__date {
    font-size: var(--ft-siz-medium-mob) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-month-mobile-events__mobile-event-title.tribe-common-h7 a {
    color: var(--wp--preset--color--primary-700) !important;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-month-mobile-events__mobile-event-title.tribe-common-h7 a:focus {
    outline: 0;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar-day__event-title-link.tribe-common-anchor-thin {
    font-size: var(--ft-siz-large-mob) !important;
  }
}
@media screen and (max-width: 600px) {
  .has-global-padding {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .has-global-padding:has(.testimonials-carousel) {
    padding-right: 0rem;
    padding-left: 0rem;
  }
  .has-global-padding > .alignfull {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .has-global-padding > .alignfull.events {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  main.has-global-padding {
    padding-right: 0rem;
    padding-left: 0rem;
    width: 100%;
  }
  main > .wp-block-group.alignfull {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: 100%;
  }
  main > .wp-block-group > h1 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: 100%;
  }
  main > .wp-block-group > .entry-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: calc(100% - 3rem);
  }
  main > .wp-block-group > .entry-content > .has-global-padding:not(.alignfull) {
    padding-right: 0rem;
    padding-left: 0rem;
    width: 100%;
  }
  main > .wp-block-group > .entry-content figure.alignfull:not(.wp-block-gallery) {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
  main > .wp-block-group > .entry-content figure:not(.alignfull) {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0rem !important;
    margin-right: 0rem !important;
    width: 100%;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .has-global-padding {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .has-global-padding:has(.testimonials-carousel) {
    padding-right: 0rem;
    padding-left: 0rem;
  }
  .has-global-padding > .alignfull {
    margin-right: -3rem;
    margin-left: -3rem;
  }
  .has-global-padding > .alignfull.events {
    margin-left: 0rem;
    margin-right: 0rem;
    padding-right: 0rem;
    padding-left: 0rem;
  }
  main.has-global-padding {
    padding-right: 0rem;
    padding-left: 0rem;
    width: 100%;
  }
  main > .wp-block-group.alignfull {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: 100%;
  }
  main > .wp-block-group > h1 {
    padding-right: 3rem;
    padding-left: 3rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: 100%;
  }
  main > .wp-block-group > .entry-content {
    padding-right: 3rem;
    padding-left: 3rem;
    margin-left: 0rem;
    margin-right: 0rem;
    width: calc(100% - 6rem);
  }
  main > .wp-block-group > .entry-content > .has-global-padding:not(.alignfull) {
    padding-right: 0rem;
    padding-left: 0rem;
    width: 100%;
  }
  main > .wp-block-group > .entry-content figure.alignfull:not(.wp-block-gallery) {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: -3rem;
    margin-right: -3rem;
    width: calc(100% + 6rem);
  }
  main > .wp-block-group > .entry-content figure:not(.alignfull) {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0rem !important;
    margin-right: 0rem !important;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  main, main.has-global-padding {
    margin-top: 4rem !important;
  }
}
