/* 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-fiche-contact__inner {
  width: 100%;
}
.s-fiche-contact__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.s-fiche-contact__card {
  flex: 0 0 calc(33% - 1rem);
  max-width: calc(33% - 1rem);
  background-color: var(--wp--preset--color--bg-tertiary);
  border-radius: 1rem;
  padding: 2.5rem;
}
.s-fiche-contact__title {
  margin-bottom: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  min-height: 3.625rem;
}
.s-fiche-contact__title {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-fiche-contact__title {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-fiche-contact__title {
    font-size: 1.5rem;
  }
}
.s-fiche-contact__infos {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s-fiche-contact__info {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.s-fiche-contact__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.0625rem;
}
.s-fiche-contact__text {
  color: var(--wp--preset--color--txt-black);
  max-width: 20.5rem;
}
.s-fiche-contact__text p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.375;
}
.s-fiche-contact__text p:last-child {
  margin-bottom: 0;
}
.s-fiche-contact__text.underline {
  text-decoration: underline;
}
.s-fiche-contact__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-weight: 400;
}
.s-fiche-contact__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-fiche-contact__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-fiche-contact__empty {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .s-fiche-contact__card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}