.page-header:has(+ .anchor-nav) {
  border-radius: 0;
}

.anchor-nav {
  background-color: #142532;
  position: relative;
  padding: 16px 0;
}
.anchor-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.anchor-nav__label {
  font-family: "Asap", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}
.anchor-nav__items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.anchor-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 16px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.anchor-nav__btn:hover {
  opacity: 0.85;
  color: #ffffff;
  text-decoration: none;
}
.anchor-nav__btn--green {
  background-color: #4caf50;
}
.anchor-nav__btn--red {
  background-color: #e63946;
}
.anchor-nav__btn--orange {
  background-color: #f9901c;
}
.anchor-nav__btn--yellow {
  background-color: #ffc947;
  color: #142532;
}
.anchor-nav__btn--yellow:hover {
  color: #142532;
}
@media (max-width: 991.98px) {
  .anchor-nav {
    padding: 12px 0;
  }
  .anchor-nav__inner {
    flex-direction: column;
    gap: 8px;
  }
  .anchor-nav__label {
    font-size: 16px;
    line-height: 1.2;
  }
  .anchor-nav__items {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .anchor-nav__btn {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 10px;
  }
}
@media (max-width: 575.98px) {
  .anchor-nav__btn {
    font-size: 12px;
    padding: 7px 10px;
  }
}