/* 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-content__inner {
  width: 100%;
}
.s-tabs-content__main-title {
  margin-bottom: 1.25rem;
  color: var(--wp--preset--color--txt-black);
  text-align: center;
}
.s-tabs-content__main-title p {
  margin: 0;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.07rem;
}
@media screen and (max-width: 1024px) {
  .s-tabs-content__main-title p {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-content__main-title p {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 580px) {
  .s-tabs-content__main-title p {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
.s-tabs-content__tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.s-tabs-content__tab {
  border: 1px solid transparent;
  border-radius: 62.4375rem;
  background: transparent;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  padding: 0.625rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.s-tabs-content__tab {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .s-tabs-content__tab {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-content__tab {
    font-size: 1.25rem;
  }
}
.s-tabs-content__tab.is-active {
  border-color: var(--wp--preset--color--bg-primary);
}
.s-tabs-content__panel {
  display: none;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  gap: 1rem;
  align-items: stretch;
}
.s-tabs-content__panel.is-active {
  display: grid;
}
.s-tabs-content--reverse .s-tabs-content__text-col {
  order: 2;
}
.s-tabs-content--reverse .s-tabs-content__image-col {
  order: 1;
}
.s-tabs-content__text-col {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  border-radius: 12px;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-tabs-content__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.045rem;
  text-align: center;
}
.s-tabs-content__title {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .s-tabs-content__title {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-content__title {
    font-size: 2.25rem;
  }
}
.s-tabs-content__title.has-picto {
  position: relative;
  padding-left: 3.125rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.s-tabs-content__title.has-picto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-image: var(--tabs-content-picto);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.s-tabs-content__description {
  margin: 1rem 0 0;
  padding-left: 3.125rem;
  color: var(--wp--preset--color--txt-black);
}
.s-tabs-content__description p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.375;
}
.s-tabs-content__description p:last-child {
  margin-bottom: 0;
}
.s-tabs-content__image-col {
  min-width: 0;
}
.s-tabs-content__media {
  margin: 0;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--wp--preset--color--bg-gray-light);
}
.s-tabs-content__media img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  display: block;
}
.s-tabs-content__media-placeholder {
  min-height: 15rem;
  border-radius: 0.75rem;
  border: 1px dashed var(--wp--preset--color--txt-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--wp--preset--color--txt-gray-light);
}
.s-tabs-content__media-placeholder {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-content__media-placeholder {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-content__media-placeholder {
    font-size: 0.875rem;
  }
}
.s-tabs-content__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-weight: 500;
}
.s-tabs-content__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-content__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-content__empty {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .s-tabs-content__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    margin-bottom: 1.25rem;
  }
  .s-tabs-content__tabs::-webkit-scrollbar {
    display: none;
  }
  .s-tabs-content__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-content {
    overflow-x: clip;
  }
  .s-tabs-content__inner {
    padding-inline: 1.25rem;
    box-sizing: border-box;
  }
  .s-tabs-content__main-title {
    margin-bottom: 1rem;
    text-align: left;
  }
  .s-tabs-content__tabs {
    gap: 0.5rem;
    margin-inline: calc(1.25rem * -1);
    padding-inline: 1.25rem;
    padding-bottom: 0.25rem;
  }
  .s-tabs-content__tab {
    font-weight: 500;
    padding: 0.5rem 0.875rem;
  }
  .s-tabs-content__tab {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .s-tabs-content__tab {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .s-tabs-content__tab {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-content__panel {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
  }
  .s-tabs-content--mobile-image-first .s-tabs-content__text-col {
    order: 2;
  }
  .s-tabs-content--mobile-image-first .s-tabs-content__image-col {
    order: 1;
  }
  .s-tabs-content__text-col {
    padding: 1.5rem 1.25rem;
  }
  .s-tabs-content__title {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.03rem;
  }
  .s-tabs-content__title.has-picto {
    display: flex;
    align-items: center;
    padding-left: 2.75rem;
    min-height: 2.25rem;
    text-align: left;
  }
  .s-tabs-content__title.has-picto::before {
    width: 2rem;
    height: 2rem;
  }
  .s-tabs-content__text-col:has(.has-picto) .s-tabs-content__description {
    padding-left: 2.75rem;
  }
  .s-tabs-content__description {
    padding-left: 0;
    text-align: left;
  }
  .s-tabs-content__description p {
    overflow-wrap: anywhere;
  }
  .s-tabs-content__image-col {
    width: 100%;
    min-width: 0;
  }
  .s-tabs-content__media {
    width: 100%;
  }
  .s-tabs-content__media img {
    min-height: 12.5rem;
    max-height: 20rem;
    height: auto;
  }
}
@media screen and (max-width: 580px) {
  .s-tabs-content__inner {
    padding-inline: 1rem;
  }
  .s-tabs-content__tabs {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .s-tabs-content__tab {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
  }
  .s-tabs-content__tab {
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) and (min-width: 569px) {
  .s-tabs-content__tab {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 580px) and (min-width: 1440px) {
  .s-tabs-content__tab {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 580px) {
  .s-tabs-content__text-col {
    padding: 1.25rem 1rem;
  }
  .s-tabs-content__title {
    font-size: 1.375rem;
  }
  .s-tabs-content__title.has-picto {
    padding-left: 2.5rem;
  }
  .s-tabs-content__title.has-picto::before {
    width: 1.75rem;
    height: 1.75rem;
  }
  .s-tabs-content__text-col:has(.has-picto) .s-tabs-content__description {
    padding-left: 2.5rem;
  }
}