:root {
  --sidebar-width: 22rem;
  --layout-gap: 6rem;
  --wp--style--block-gap: clamp(3.5rem, 2.737rem + 1.404vw, 4rem);
}

@media (min-width: 1300px) {
  :root {
    --sidebar-width: 30rem;
    --layout-gap: 8rem;
  }
}
ul.tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: var(--wp--preset--spacing--normal);
  margin: 0 0 2.5rem 0;
  padding: 0;
  border-top: 1px solid #92A097;
  position: relative;
}
ul.tabs li {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
ul.tabs a {
  display: block;
  font-size: var(--wp--preset--font-size--font-18);
  font-weight: 300;
  padding: 1.5ch 0 0.2ch 0;
  color: #292927;
  position: relative;
  cursor: pointer;
  transition: color 0.35s ease-in-out, font-weight 0.35s ease-in-out !important;
}
ul.tabs a:before {
  content: "";
  display: block;
  height: 0;
  background: #92A097;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: height 0.35s ease-in-out;
}
ul.tabs a.active, ul.tabs a:hover, ul.tabs a:active, ul.tabs a:focus {
  font-weight: 500;
  color: #000;
}
ul.tabs a.active:before, ul.tabs a:hover:before, ul.tabs a:active:before, ul.tabs a:focus:before {
  height: 0.5ch;
}
@media (min-width: 1024px) {
  ul.tabs a {
    font-size: var(--wp--preset--font-size--font-22);
  }
}
ul.tabs.fw li {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
}
ul.tabs.fw li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
ul.tabs.center {
  justify-content: center;
}

.vert ul.tabs {
  display: flex;
  flex-direction: column;
  width: calc(35% - 30px);
  margin: 0 30px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.vert ul.tabs li {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0;
}
.vert ul.tabs a {
  display: block;
  height: auto;
  padding: 0.9ch 1.4rem;
  color: #3E3E3E !important;
  background: transparent;
  border: 1px solid #014A3F;
  border-radius: 4px;
}
.vert ul.tabs a:hover, .vert ul.tabs a:active, .vert ul.tabs a:focus, .vert ul.tabs a.active {
  background: rgba(1, 74, 63, 0.05);
  color: #014A3F !important;
  cursor: pointer;
}
@media (min-width: 750px) {
  .vert .tab-panel {
    width: 65%;
  }
}
@media (min-width: 1024px) {
  .vert ul.tabs {
    width: 180px;
  }
  .vert .tab-panel {
    width: calc(100% - 215px);
  }
}

@media (max-width: 749px) {
  .acc ul.tabs {
    display: none;
  }
}