/* 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-locations-map {
  position: relative;
}
.s-locations-map .l-container {
  display: flex;
  justify-content: flex-end;
}
.s-locations-map-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.s-locations-map-bg__img {
  width: 100%;
  height: 100%;
  max-height: 70%;
  max-width: 60%;
  object-fit: contain;
}
.s-locations-map__items {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 35.625rem;
}
.s-locations-map-item {
  display: flex;
  background-color: var(--wp--preset--color--bg-gray-light);
}
.s-locations-map-item__img-wrap {
  flex: 0 0 14.375rem;
  position: relative;
}
.s-locations-map-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.s-locations-map-item__content {
  flex: 1 1 60%;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.s-locations-map-item__name {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1;
}
.s-locations-map-item__name {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-locations-map-item__name {
    font-size: calc(24px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-locations-map-item__name {
    font-size: 2rem;
  }
}
.s-locations-map-item__address {
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.6;
}
.s-locations-map-item__address {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-locations-map-item__address {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-locations-map-item__address {
    font-size: 0.875rem;
  }
}
.s-locations-map-item__link {
  margin-top: 1.4375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--txt-deep-purple-medium);
}
.s-locations-map-item__link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-locations-map-item__link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-locations-map-item__link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 991px) {
  .s-locations-map .l-container {
    flex-direction: column;
    align-items: stretch;
  }
  .s-locations-map-bg {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-bottom: 1.5rem;
    width: 100%;
    overflow: hidden;
  }
  .s-locations-map-bg__img {
    max-height: 17.5rem;
    object-fit: cover;
    width: 230%;
    object-position: -75px 10%;
    max-width: 500%;
    height: auto;
  }
  .s-locations-map__items {
    max-width: none;
  }
  .s-locations-map-item {
    flex-direction: column;
  }
  .s-locations-map-item__img-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 12.5rem;
  }
  .s-locations-map-item__content {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-locations-map-bg__img {
    max-height: 13.75rem;
  }
  .s-locations-map-item__img-wrap {
    height: 11.25rem;
  }
  .s-locations-map-item__content {
    padding: 1.25rem;
  }
  .s-locations-map-item__name {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    line-height: 1.2;
  }
  .s-locations-map-item__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 580px) and (min-width: 569px) {
  .s-locations-map-item__name {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 580px) and (min-width: 1440px) {
  .s-locations-map-item__name {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 580px) {
  .s-locations-map-item__address {
    margin-top: 0.75rem;
  }
  .s-locations-map-item__link {
    margin-top: 1rem;
  }
}