s-tabs{
  display: block;
  width: 100%;
}

.tab__triggers{
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: start;
}

.tab__trigger{
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.4rem;
}

.tab__trigger[aria-selected="true"]{
  font-weight: 700;
}

.tab__panel[aria-hidden="false"]{
    display: flex;
    flex-direction: column;
  }
  
.tab__panel[aria-hidden="true"]{
  display: none;
}
