/* 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-expertise-related {
  width: 100%;
  padding: 7.5rem 0;
}
.s-expertise-related__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 4.3125rem;
  align-items: start;
}
.s-expertise-related__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 28.3125rem;
}
.s-expertise-related__title {
  margin: 0;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06rem;
  color: var(--wp--preset--color--black);
}
.s-expertise-related__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--black);
}
.s-expertise-related__list {
  display: flex;
  gap: 1rem;
  min-width: 0;
}
.s-expertise-related__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.s-expertise-related__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 1.25rem;
  border-radius: 31.25rem;
  background-color: var(--wp--preset--color--blanc);
  color: var(--wp--preset--color--bleu-saphyr);
  text-decoration: none;
  transition: background-color 0.25s ease;
}
.s-expertise-related__pill:hover, .s-expertise-related__pill:focus-visible {
  text-decoration: none;
  color: var(--wp--preset--color--bleu-saphyr);
  outline: none;
  background-color: color-mix(in srgb, var(--wp--preset--color--blanc) 88%, var(--wp--preset--color--bleu-saphyr));
}
.s-expertise-related__pill:hover .s-expertise-related__pill-icon, .s-expertise-related__pill:focus-visible .s-expertise-related__pill-icon {
  background-color: currentColor;
  border-color: currentColor;
}
.s-expertise-related__pill:hover .s-expertise-related__pill-arrow, .s-expertise-related__pill:focus-visible .s-expertise-related__pill-arrow {
  color: var(--wp--preset--color--blanc);
}
.s-expertise-related__pill:hover .s-expertise-related__pill-arrow--a, .s-expertise-related__pill:focus-visible .s-expertise-related__pill-arrow--a {
  transform: translate(60%, -50%);
  opacity: 0;
}
.s-expertise-related__pill:hover .s-expertise-related__pill-arrow--b, .s-expertise-related__pill:focus-visible .s-expertise-related__pill-arrow--b {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.s-expertise-related__pill-label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: inherit;
}
.s-expertise-related__pill-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  box-sizing: border-box;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  color: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.s-expertise-related__pill-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 6/4.63;
  line-height: 0;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.25s ease;
}
.s-expertise-related__pill-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.s-expertise-related__pill-arrow--a {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.s-expertise-related__pill-arrow--b {
  transform: translate(-160%, -50%);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .s-expertise-related {
    padding: 4rem 0;
  }
  .s-expertise-related__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .s-expertise-related__intro {
    max-width: none;
  }
}
@media screen and (max-width: 991px) {
  .s-expertise-related__list {
    flex-direction: column;
  }
}