.as-tabs {
    padding-top: .5rem;
}

.as-tabs__nav,
.as-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem .75rem;
  align-items: flex-end;
  padding-bottom: .25rem;
  margin: 0;
  background: #EBEEF3;
  padding-left: 20px;
  margin-left: -20px;
}

.as-tabs [role="tab"] {
    all: unset;
    display: inline-block;
    cursor: pointer;
    font-family: 'franklin-gothic-urw-cond', helvtica, arial;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2b3445;
    position: relative;
    padding: .375rem 0;
    margin-right: 20px;
}

.as-tabs [role="tab"]:hover {
    color: #e57200;
}

.as-tabs [role="tab"]:focus-visible {
    outline: 2px solid #232d4b;
    outline-offset: 3px;
    border-radius: 2px;
}

.as-tabs [role="tab"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: transparent;
    border-radius: 1px;
    transition: background-color .25s;
}

.as-tabs [role="tab"].is-active::after,
.as-tabs [role="tab"][aria-selected="true"]::after {
    background: #e57200;
}

.as-tabs [role="tabpanel"] {
    padding-top: 1.25rem;
    max-width: 72ch;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
}

.as-tabs [role="tabpanel"][hidden] {
    display: none !important;
}