.adlm-anchor-navigation {
  display: flex;
  justify-content: center;
  margin: var(--wp--preset--spacing--60) 0;
  padding: 0 var(--wp--preset--spacing--40);
}

.adlm-anchor-navigation__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 10px;
  list-style: none;
  padding-left: 0;
  justify-content: center;
}

.adlm-anchor-navigation__item {
  margin: 0;
  position: relative;
  margin-block-start: 0 !important;
}

.adlm-anchor-navigation__item:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wp--preset--color--muted, #8a8a8a);
  font-size: 1.2em;
  line-height: 1;
}

.adlm-anchor-navigation__link {
  color: var(--wp--preset--color--dark, #1a1a1a);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--lg);
  font-family: var(--wp--preset--font-family--bellefair);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.adlm-anchor-navigation__link:focus,
.adlm-anchor-navigation__link:focus-visible {
    outline: 0;
}

@media (max-width: 768px) {
  .adlm-anchor-navigation__list {
    /* flex-direction: column;
    align-items: center; */
    column-gap: 30px;
  }

  .adlm-anchor-navigation__item:not(:last-child)::after {
    display: none;
  }

  .adlm-anchor-navigation__link {
    font-size: 0.85rem;
  }
}