/* 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-content-team-list__header {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  max-width: 53.9375rem;
  margin-bottom: 3rem;
}
.s-content-team-list__ttl {
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
}
.s-content-team-list__intro {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: var(--wp--preset--color--txt-gray-dark);
}
.s-content-team-list__cols {
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 991px) {
  .s-content-team-list__cols {
    flex-direction: column;
    gap: 2rem;
  }
}
.s-content-team-list__col {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(19, 19, 19, 0.15);
}
.s-content-team-list__col:last-child {
  border-right: none;
}
@media screen and (max-width: 991px) {
  .s-content-team-list__col {
    border-right: none;
  }
  .s-content-team-list__col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.s-content-team-list__member {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  overflow: hidden;
}
.s-content-team-list__bullet {
  transform: translateY(3px);
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 100px;
  background-color: var(--s-content-team-list-bullet-color, var(--wp--preset--color--bg-tertiary));
}
.s-content-team-list__member-info {
  display: flex;
  flex-direction: column;
  color: var(--wp--preset--color--txt-gray-dark);
  padding-bottom: 0.125rem;
}
.s-content-team-list__name {
  font-family: "remora-sans-w1", "sans-serif";
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.s-content-team-list__role {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .s-content-team-list__header {
    margin-bottom: 2.5rem;
  }
  .s-content-team-list__ttl {
    font-size: 2.5rem;
  }
  .s-content-team-list__cols {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-content-team-list__header {
    max-width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .s-content-team-list__header {
    margin-bottom: 2rem;
    row-gap: 1rem;
  }
  .s-content-team-list__ttl {
    font-size: 2rem;
  }
  .s-content-team-list__cols {
    gap: 0.5rem;
  }
}