/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-tabs-image-small__container {
  display: flex;
  flex-direction: row;
  border-radius: 0.25rem;
  overflow: hidden;
}
.s-tabs-image-small__mobile-select {
  display: none;
}
.s-tabs-image-small__list {
  width: 28.75rem;
  min-height: 27rem;
  flex-shrink: 0;
  background-color: var(--wp--preset--color--bg-pale-sky-light);
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.s-tabs-image-small__list-item {
  width: calc(100% - 10px);
  padding-block: 0.625rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
}
.s-tabs-image-small__list-item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.s-tabs-image-small__list-item.is-active .s-tabs-image-small__list-header {
  transform: translateX(0.875rem);
}
.s-tabs-image-small__list-item.is-active .s-tabs-image-small__list-title {
  color: var(--wp--preset--color--txt-pale-sky-dark);
}
@media (hover: hover) and (pointer: fine) {
  .s-tabs-image-small__list-item:hover:not(.is-active) .s-tabs-image-small__list-header {
    transform: translateX(0.875rem);
    transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
  }
  .s-tabs-image-small__list-item:hover:not(.is-active) .s-tabs-image-small__list-title {
    color: var(--wp--preset--color--txt-pale-sky-dark);
    transition: color 400ms cubic-bezier(0, 0, 0.2, 1);
  }
}
.s-tabs-image-small__list-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  position: relative;
  transform: translateX(0);
  transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
}
.s-tabs-image-small__list-icon-wrapper {
  width: 0.5625rem;
  flex-shrink: 0;
  position: absolute;
  left: -0.875rem;
}
.s-tabs-image-small__list-icon {
  fill: var(--wp--preset--color--bg-pale-sky-dark);
}
.s-tabs-image-small__list-title {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  transition: color 400ms cubic-bezier(0, 0, 0.2, 1);
}
.s-tabs-image-small__list-title {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-image-small__list-title {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-image-small__list-title {
    font-size: 0.875rem;
  }
}
.s-tabs-image-small__details {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}
.s-tabs-image-small__details-item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.s-tabs-image-small__details-item.is-active {
  opacity: 1;
}
.s-tabs-image-small__details-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.s-tabs-image-small__details-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-tabs-image-small__details-desc-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50rem;
  height: fit-content;
  padding: 2.5rem 6.25rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
}
.is-active .s-tabs-image-small__details-desc-wrapper {
  opacity: 1;
}
.s-tabs-image-small__details-desc {
  color: var(--wp--preset--color--txt-white);
}
.s-tabs-image-small__details-desc p {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.2;
}
.s-tabs-image-small__details-desc p {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-tabs-image-small__details-desc p {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-image-small__details-desc p {
    font-size: 1.25rem;
  }
}
.s-tabs-image-small__details-subdesc {
  color: var(--wp--preset--color--txt-white);
}
.s-tabs-image-small__details-subdesc p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.s-tabs-image-small__details-subdesc p {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-image-small__details-subdesc p {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-image-small__details-subdesc p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-image-small__container {
    flex-direction: column;
    border-radius: 0.25rem;
    overflow: visible;
    background-color: var(--wp--preset--color--bg-pale-sky-light);
    padding: 1.5rem;
    transform: translateX(calc(-1 * 1.25rem));
    width: 100vw;
  }
  .s-tabs-image-small__mobile-select {
    display: block;
    position: relative;
    margin-bottom: 1rem;
  }
  .s-tabs-image-small__mobile-select-icon {
    transition: transform 400ms ease;
  }
  .s-tabs-image-small__mobile-select-trigger[aria-expanded=true] .s-tabs-image-small__mobile-select-icon {
    transform: rotate(-180deg);
  }
  .s-tabs-image-small__mobile-select-icon svg {
    fill: var(--wp--preset--color--txt-black);
  }
  .s-tabs-image-small__mobile-select-trigger {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    background-color: var(--wp--preset--color--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .s-tabs-image-small__mobile-select-trigger[aria-expanded=true] {
    border-radius: 0.25rem 0.25rem 0 0;
  }
  .s-tabs-image-small__mobile-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--wp--preset--color--bg-white);
    border-radius: 0 0 0.25rem 0.25rem;
    z-index: 20;
    display: none;
    overflow: hidden;
    box-shadow: 0 19px 22px 0px rgba(0, 0, 0, 0.12);
  }
  .s-tabs-image-small__mobile-select-dropdown.is-open {
    display: flex;
    flex-direction: column;
  }
  .s-tabs-image-small__mobile-select-option {
    padding: 0.875rem 1rem;
    cursor: pointer;
    border: none;
    text-align: left;
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
  }
  .s-tabs-image-small__mobile-select-option {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .s-tabs-image-small__mobile-select-option {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .s-tabs-image-small__mobile-select-option {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-image-small__mobile-select-option.is-active {
    color: var(--wp--preset--color--txt-pale-sky-dark);
  }
  .s-tabs-image-small__mobile-select-option:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .s-tabs-image-small__mobile-select-label {
    color: var(--wp--preset--color--txt-black);
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }
  .s-tabs-image-small__mobile-select-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .s-tabs-image-small__mobile-select-label {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .s-tabs-image-small__mobile-select-label {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-image-small__list {
    display: none;
  }
  .s-tabs-image-small__details {
    min-height: auto;
    width: 100%;
    border-radius: 0.25rem;
  }
  .s-tabs-image-small__details-item {
    position: relative;
    height: auto;
    display: none;
    opacity: 1;
  }
  .s-tabs-image-small__details-item.is-active {
    display: block;
    opacity: 1;
  }
  .s-tabs-image-small__details-img-wrapper {
    position: absolute;
    height: 100%;
  }
  .s-tabs-image-small__details-img {
    backdrop-filter: blur(20px);
  }
  .s-tabs-image-small__details-desc-wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.875rem;
    gap: 1.5rem;
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}