.hb-sticky-tabs {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: var(--hb-paper);
  border-top: 1px solid var(--hb-line);
  border-bottom: 1px solid var(--hb-line);
}
.hb-sticky-tabs__list {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0; padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hb-sticky-tabs__link {
  display: inline-flex;
  align-items: center;
  padding: 18px 24px;
  font-family: var(--hb-font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--hb-ink-500);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.hb-sticky-tabs__link:hover { color: var(--hb-ink-900); }
.hb-sticky-tabs__link.is-active {
  color: var(--hb-ink-900);
  border-bottom-color: var(--hb-orange-500);
}
