.tabs__item {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
}

@media (min-width: 769px) {
  .tabs__item {
    height: auto;
  }
}

.tabs__teaser {
  display: grid;
  grid-template-areas: 'main';
  grid-template-rows: 1fr;
  overflow: hidden;
  height: 100%;
  grid-row: 1;
}

.tabs__teaser-foreground {
  grid-area: main;
  position: relative;
}

@media (max-width: 799px) {
  .tabs__teaser-foreground {
    margin: 0 auto 0;
  }
}

.tabs__teaser-title {
  margin-top: 10px;
}

.tabs__item--last,
.tabs__item:target {
  opacity: 1;
  pointer-events: all;
  position: static;
}

.tabs__title {
  text-align: center;
}

.tabs__tabs {
  padding: 0 0 35px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tabs__tab {
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 6px;
  text-decoration: none;
  transition: .3s ease-in-out;
  font-weight: 600;
}

.tabs__tab--current {
  color: #fff !important;
  background-color: var(--beforce-blue) !important;
  border: 1px solid #fff !important;
}

.tabs__items {
  display: grid;
  grid-template-areas: 'only';
}

.tabs__item {
  grid-area: only;
  position: static;
}

.tabs__teaser-content {
  line-height: 1.75rem;
}

.tabs__teaser-content small {
  color: var(--beforce-blue);
}


