/** At this monitor size it is wider than Figma */
.tabs {
  --tabs-bg: var(--onion);

  position: relative;
  padding: 3rem;
  text-align: center;
}
.tabs::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--tabs-bg);
    opacity: 0.8;
  }
.tabs .tabs__inner {
    position: relative;
  }
.tabs .tabs__title {
    font-size: 2.625rem;
    margin-bottom: 2.6875rem;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
@media (min-width: 50.001rem) {
.tabs .tabs__title {
      margin-bottom: 4.6875rem;
  }
    }
.tabs .tabs__description {
    margin-top: 1.25rem;
    letter-spacing: 1.5px;
  }
.tabs .tab__radio {
    display: none;
  }
.tabs .tab__label {
    display: inline-block;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    font-family: var(--heading-family);
    opacity: 0.6;
    color: var(--black);
  }
.tabs .tab__label:hover {
      opacity: 1;
    }
.tabs .tab__label::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: none;
      height: 2px;
      width: 80px;
      background: currentColor;
    }
.tabs .tab__content {
    display: none;
  }
.tabs .tab__radio:checked + .tab__label {
    opacity: 1;
  }
.tabs .tab__radio:checked + .tab__label::after {
      display: block;
    }
.tabs #tab-1:checked ~ #tab-content-1,.tabs #tab-2:checked ~ #tab-content-2,.tabs #tab-3:checked ~ #tab-content-3,.tabs #tab-4:checked ~ #tab-content-4,.tabs #tab-5:checked ~ #tab-content-5,.tabs #tab-6:checked ~ #tab-content-6,.tabs #tab-7:checked ~ #tab-content-7,.tabs #tab-8:checked ~ #tab-content-8,.tabs #tab-9:checked ~ #tab-content-9,.tabs #tab-10:checked ~ #tab-content-10 {
    display: block;
  }
