/* 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-cta-banner {
  color: var(--wp--preset--color--white);
  overflow: hidden;
}
.s-cta-banner__inner {
  width: 100%;
}
.s-cta-banner__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(25rem, 49vw, 44.4375rem);
  isolation: isolate;
}
.s-cta-banner__panel.has-no-media {
  min-height: clamp(20rem, 40vw, 30rem);
  border-radius: 1.125rem;
  background-color: var(--wp--preset--color--gray-dark);
}
.s-cta-banner__panel.has-no-media .s-cta-banner__overlay {
  display: none;
}
@media screen and (max-width: 991px) {
  .s-cta-banner__panel {
    min-height: 25rem;
  }
}
.s-cta-banner__media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  border-radius: 1.125rem;
  background-color: var(--wp--preset--color--gray-dark);
  pointer-events: none;
}
.s-cta-banner__media-image, .s-cta-banner__media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
}
.s-cta-banner:not(.is-animating) .s-cta-banner__media-image,
.s-cta-banner:not(.is-animating) .s-cta-banner__media-video {
  transform: scale(1.2);
}
.s-cta-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  border-radius: 1.125rem;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}
.s-cta-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.125rem;
  width: 100%;
  min-width: 0;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .s-cta-banner__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.s-cta-banner__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}
.s-cta-banner__logo {
  display: block;
  flex-shrink: 0;
  width: 4.5625rem;
  height: 4.5625rem;
  color: var(--wp--preset--color--white);
  transform-origin: center center;
}
.s-cta-banner__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
.s-cta-banner__title {
  margin: 0;
  color: var(--wp--preset--color--white);
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-cta-banner__title {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-cta-banner__title {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-cta-banner__title {
    font-size: 3.5rem;
  }
}
.s-cta-banner__text {
  color: var(--wp--preset--color--white);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  text-align: center;
}
.s-cta-banner__text {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-cta-banner__text {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-cta-banner__text {
    font-size: 0.875rem;
  }
}
.s-cta-banner__text > *:first-child {
  margin-top: 0;
}
.s-cta-banner__text > *:last-child {
  margin-bottom: 0;
}
.s-cta-banner__text a {
  color: inherit;
}
.s-cta-banner__actions .c-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .s-cta-banner__content {
    gap: 1.5rem;
    padding-block: 2.5rem;
  }
  .s-cta-banner__copy {
    gap: 1.25rem;
  }
  .s-cta-banner__logo {
    width: 3.5rem;
    height: 3.5rem;
  }
  .s-cta-banner__actions {
    width: 100%;
  }
  .s-cta-banner__actions .c-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .s-cta-banner__actions .c-btn {
    width: 100%;
    min-width: 0;
  }
}