.tabs__container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--wp--preset--color--dark-background);
  border-radius: var(--wp--custom--border-radius--medium);
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--border);
}

.radiotab {
  position: absolute;
  opacity: 0;
}

.tab__title {
  width: 100%;
  padding: 1.5rem;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: var(--wp--preset--font-size--regular);
  color: var(--wp--preset--color--penumbra);
  border-right: 1px solid var(--wp--preset--color--border);
  border-bottom: 1px solid var(--wp--preset--color--border);
  line-height: var(--wp--custom--line-height--medium);
}

@media (max-width: 781px) {
  .tab__title {
    padding: .75rem;
  }
}

.tab__title:last-of-type {
  border-right: none;
}

.radiotab:checked + .tab__title {
  color: var(--wp--preset--color--primary);
  border-bottom-color: transparent;
}

.--count-2 .tab__title {
  width: 50%;
}

.--count-3 .tab__title {
  width: calc(100% / 3);
}

.--count-4 .tab__title {
  width: 25%;
}

.--count-5 .tab__title {
  width: 20%;
}

.--count-6 .tab__title {
  width: calc(100% / 6);
}

.tab__content {
  display: none;
  width: 100%;
  padding: 4rem 7% 5rem;
  order: 20;
}

@media (max-width: 781px) {
  .tab__content {
    padding: 2rem 7% 2.5rem;
  }
}

.tab__content .is-style-two-column h4 {
  margin-top: 0;
  break-before: column;
}

.radiotab:checked + .tab__title + .tab__content {
  display: block;
}