/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-posts-slider {
  --slides-per-page: 2.8;
  color: var(--wp--preset--color--gray-dark);
  overflow: hidden;
}
.s-posts-slider > .l-wrapper > .l-container {
  overflow: visible;
}
.s-posts-slider__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.s-posts-slider__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.s-posts-slider__heading {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  min-width: 0;
  flex: 1 1 auto;
}
.s-posts-slider__title {
  margin: 0;
  color: var(--wp--preset--color--red);
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-posts-slider__title {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-posts-slider__title {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-posts-slider__title {
    font-size: 3.5rem;
  }
}
.s-posts-slider__intro {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: var(--wp--preset--color--gray-dark);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-posts-slider__intro {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-posts-slider__intro {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-posts-slider__intro {
    font-size: 0.875rem;
  }
}
.s-posts-slider__intro p {
  margin: 0;
}
.s-posts-slider__intro p + p {
  margin-top: 0.5rem;
}
.s-posts-slider__intro a {
  color: inherit;
  text-decoration: underline;
}
.s-posts-slider__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
}
.s-posts-slider__actions .c-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.625rem;
  margin: 0;
}
.s-posts-slider__slider-region {
  width: calc(100% + (100vw - 100%) / 2);
  max-width: none;
}
.s-posts-slider__slider-region.is-contained {
  width: 100%;
  max-width: 100%;
}
.s-posts-slider__slider.is-static {
  visibility: visible;
}
.s-posts-slider__slider.is-static .splide__track {
  overflow: visible;
}
.s-posts-slider__slider.is-static.is-centered .splide__list {
  display: grid;
  grid-template-columns: repeat(var(--slide-count, 1), minmax(0, calc(100% / var(--slides-per-page))));
  justify-content: flex-start;
  gap: 1rem;
}
.s-posts-slider__slider.is-static.is-centered .splide__slide {
  min-width: 0;
  width: 100%;
}
.s-posts-slider__slider .splide__track {
  overflow: visible;
}
.s-posts-slider__slider .splide__list {
  align-items: stretch;
}
.s-posts-slider__slider:not(.is-static) .splide__slide {
  min-width: 0;
}
.s-posts-slider .c-post-card {
  min-height: 31.875rem;
}
.s-posts-slider__nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}
.s-posts-slider__nav.is-static-hidden {
  display: none;
}
.s-posts-slider__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.625rem;
  border: 1px solid var(--wp--preset--color--red);
  border-radius: 1.875rem;
  background: transparent;
  color: var(--wp--preset--color--red);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.s-posts-slider__nav-btn svg {
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}
.s-posts-slider__nav-btn svg [fill]:not([fill=none]) {
  fill: currentColor;
}
.s-posts-slider__nav-btn svg [stroke]:not([stroke=none]) {
  stroke: currentColor;
}
.s-posts-slider__nav-btn:focus-visible {
  background: var(--wp--preset--color--red);
  color: var(--wp--preset--color--white);
}
@media (hover: hover) and (pointer: fine) {
  .s-posts-slider__nav-btn:hover {
    background: var(--wp--preset--color--red);
    color: var(--wp--preset--color--white);
  }
}
.s-posts-slider__nav-btn:disabled, .s-posts-slider__nav-btn[aria-disabled=true] {
  opacity: 0.35;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .s-posts-slider__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .s-posts-slider__actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .s-posts-slider__actions .c-buttons {
    justify-content: flex-start;
  }
  .s-posts-slider__slider.is-static.is-centered:has(.splide__slide:only-child) .splide__list {
    grid-template-columns: minmax(0, 1fr);
  }
  .s-posts-slider__slider:not(.is-static) .splide__slide {
    width: min(100%, 20rem);
  }
}