.tabs .tabs__list .tabs__item .tabs__link {
    color: var(--primary-1);
}
.tabs .tabs__list .tabs__item .tabs__link:hover::after ,.tabs .tabs__list .tabs__item .tabs__link.active::after {
    background-color: var(--primary-1);
    height: .2rem;
}
.tabs .tabs__list .tabs__item .tabs__link::after{
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
}
.tabs .tabs__list .tabs__item .tabs__link::after{
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
}
.tabbed-content__panel {
    display: none
  }
  .tabbed-content__panel.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
  .tabbed-content__stat-wrapper .stat {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
  }
  .tabbed-content__intro .config-text__cta-wrapper .cta {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%
  }
  .tabbed-content__quote .quote-text__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--xs-1);
  }
  /* Quarterly-Signpost items */
  .tabbed-content .tabbed-content__quarterly-wrapper{
      gap: var(--sm-1);
  }
  .tabbed-content .tabbed-content__quarterly-wrapper .quarterly-item-wrapper{
      background-color: var(--base-5);
      padding: var(--sm-2);
  }
  .tabbed-content .tabbed-content__quarterly-wrapper .quarterly-item-wrapper .links-wrapper{
      row-gap: var(--sm-4);
  }
  @media (min-width:768px) {
    .tabbed-content__stat-wrapper .stat {
      -ms-flex-preferred-size: calc(33.33% - var(--sm-2));
      flex-basis: calc(33.33% - var(--sm-2))
    }
  }
  
  @media only screen and (max-width:1199px){
  	.tabbed-content .tabbed-content__quarterly-wrapper{
    	flex-wrap: wrap;
    }
    .tabbed-content .tabbed-content__quarterly-wrapper .quarterly-item-wrapper{
    	flex: 0 0 45%;
    }
  }

  @media only screen and (max-width:767px){
    .tabbed-content .tabbed-content__quarterly-wrapper{
        flex-wrap: wrap;
    }
    .tabbed-content .tabbed-content__quarterly-wrapper .quarterly-item-wrapper{
      width:100%;
    }
    .tabbed-content .tabbed-content__quarterly-wrapper .quarterly-item-wrapper{
      flex: 1;
    }
  }