.site-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  margin-top: -0.35rem;
  margin-bottom: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-tabs::-webkit-scrollbar {
  display: none;
}

.site-tab {
  position: relative;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  padding: 0.38rem 0.78rem 0.45rem;
  color: #8b7d6b;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-tab:hover {
  color: #8b2500;
  background: rgba(250, 247, 240, 0.5);
}

.site-tab[aria-current="page"] {
  border-color: rgba(212, 200, 176, 0.9);
  color: #8b2500;
  background: rgba(255, 254, 249, 0.68);
}

.site-tab[aria-current="page"]::after {
  content: '';
  position: absolute;
  right: 0.7rem;
  bottom: -1px;
  left: 0.7rem;
  height: 2px;
  background: #8b2500;
}

@media (max-width: 460px) {
  .site-tabs {
    margin-top: -0.25rem;
    margin-bottom: 0.5rem;
  }

  .site-tab {
    padding-right: 0.65rem;
    padding-left: 0.65rem;
    font-size: 1.1rem;
  }
}
