.tabs__list {
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  width: 100%;
}

.tabs__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabs__link {
  cursor: pointer;
  display: block;
  font-weight: 700;
  padding: .25rem 1rem;
  position: relative;
  text-decoration: none !important;
}

.tabs__link[aria-selected=true]::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  bottom: -1px;
  right: 0;
  left: 0;
  top: auto;
  height: 4px;
  width: auto;
}

.tabs__content[aria-hidden=true] {
  display: none;
}
