.tabs {
  column-gap: var(--space-s-m);
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
}
.tabs::after {
  background-color: var(--color-klezmer-earth--tint-10);
  content: '';
  height: 3px;
  position: absolute;
  top: calc(100% - 3px);
  width: 100%;
  z-index: 0;
}

.tab {
  background: none;
  border: none;
  color: var(--color-klezmer-life);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--step--1);
  font-weight: var(--font-weight-bold);
  padding-block-end: var(--space-s);
  padding-inline: 0;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.tab::after {
  background-color: transparent;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  top: calc(100% - 3px);
  transition: background-color 0.2s;
  width: 100%;
  z-index: 1;
}

.tab:hover {
  color: var(--color-klezmer-light);
}

.tab.active:hover {
  color: var(--color-klezmer-life);
}
.tab.active::after {
  background-color: var(--color-klezmer-life);
}

.tab-content {
  container-type: inline-size;
  display: none;
  padding-block-start: var(--space-l);
}

.tab-content.active {
  display: block;
}
