/* 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 */
.content-anchor-menu__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 991px) {
  .content-anchor-menu__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.content-anchor-menu__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-black);
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .content-anchor-menu__intro {
    white-space: normal;
  }
}
.content-anchor-menu__items {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.content-anchor-menu__items::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: transparent;
}
.content-anchor-menu__items::-webkit-scrollbar {
  width: 0.375rem;
  background-color: transparent;
}
.content-anchor-menu__items::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: var(--wp--preset--color--bg-secondary-light);
}
.content-anchor-menu__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6875rem 1rem;
  border-radius: 2.375rem;
  border: 1px solid var(--wp--preset--color--bg-secondary-light);
  background-color: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
}
.content-anchor-menu__chip:focus-visible {
  outline: 2px solid var(--wp--preset--color--bg-secondary);
  outline-offset: 2px;
}
.content-anchor-menu__chip--active {
  background-color: var(--wp--preset--color--bg-secondary-lightest);
  border-color: var(--wp--preset--color--bg-secondary);
}
.content-anchor-menu__chip-label {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: var(--wp--preset--color--txt-secondary-dark);
}
.content-anchor-menu__select {
  display: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--bg-secondary-light);
  border-radius: 10px;
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-secondary-dark);
  font-weight: 400;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23131313' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.content-anchor-menu__select {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .content-anchor-menu__select {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .content-anchor-menu__select {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .content-anchor-menu__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .content-anchor-menu__items {
    display: none;
  }
  .content-anchor-menu__select {
    display: block;
    flex: 1;
  }
}