/* 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-team-section__inner {
  width: 100%;
}
.s-team-section__title {
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  text-align: center;
}
.s-team-section__title {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-team-section__title {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-team-section__title {
    font-size: 1.5rem;
  }
}
.s-team-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.25rem;
  border-top: 1px solid rgba(19, 19, 19, 0.15);
  padding-top: 1.75rem;
}
.s-team-section__card {
  overflow: hidden;
  background-color: var(--wp--preset--color--bg-white);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.s-team-section__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
}
.s-team-section__media img {
  border-radius: 0.625rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-team-section__content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.s-team-section__content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.s-team-section__name {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.s-team-section__name {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-team-section__name {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-team-section__name {
    font-size: 1.125rem;
  }
}
.s-team-section__poste {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  display: inline;
  margin: 0;
  width: auto;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.s-team-section__poste {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-team-section__poste {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-team-section__poste {
    font-size: 0.75rem;
  }
}
.s-team-section__linkedin {
  background: var(--wp--preset--color--bg-primary);
  border-radius: 2.0625rem;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.s-team-section__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-weight: 400;
}
.s-team-section__empty {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-team-section__empty {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-team-section__empty {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .s-team-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .s-team-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }
}