.tab-section-1 .content {
  flex-direction: column;
  gap: 50px;
}
.tab-section-1 .section-side-one .headline {
  max-width: 685px;
  margin-bottom: 20px;
}
.tab-section-1 .section-side-one .overline {
  margin-bottom: 14px;
}
.tab-section-1 .section-side-one .body-copy-container {
  flex: 2;
}
.tab-section-1 .section-side-one .body-copy {
  max-width: 687px;
}
.tab-section-1 .body-copy {
  margin-bottom: 0;
}
.tab-section-1 .section-side-two {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.tab-section-1.heading-layout-side_by_side .section-side-one {
  gap: 24px 32px;
  flex: 1;
  flex-direction: row;
}
.tab-section-1.heading-layout-side_by_side .section-side-one .headline {
  flex: 1;
}
.tab-section-1.heading-layout-side_by_side .section-side-two {
  flex: 2;
}
.tab-section-1 .tab-list {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tab-section-1 .tab-indicator {
  position: absolute;
  left: 0;
  width: 4px;
  height: 52px;
  background: var(--brand-500);
  border-radius: var(--border-radius-md);
  transition: top var(--transition-timing-fast) var(--transition-ease-1), height var(--transition-timing-fast) var(--transition-ease-1);
  pointer-events: none;
}
.tab-section-1 .tab-list-item {
  cursor: pointer;
  min-height: 52px;
  padding: 14px 0 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--gray-300);
  color: var(--green-700);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-timing-fast) var(--transition-ease-1);
}
.tab-section-1 .tab-list-item:hover {
  color: var(--gray-900);
}
.tab-section-1 .tab-list-item.active {
  color: var(--brand-700);
}
.tab-section-1 .tab-list-item-body {
  margin-top: 6px;
  color: var(--body-default-font-color);
  font-weight: var(--font-weight-regular);
}
.tab-section-1 .tab-panels {
  flex: 2;
}
.tab-section-1 .tab-panel {
  display: none;
  gap: 40px;
}
.tab-section-1 .tab-panel.active {
  display: flex;
  flex-direction: column;
}
.tab-section-1 .tab-layout-text_list {
  gap: 15px;
}
.tab-section-1 .tab-layout-text_list .body-copy {
  margin-bottom: 20px;
}
.tab-section-1 .tab-layout-text_list .icon-list {
  font-weight: 400;
}
.tab-section-1 .tab-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab-section-1 .tab-card {
  display: flex;
  gap: 30px;
  background: var(--gray-100);
  padding: 16px;
  border-radius: var(--border-radius-6xl);
  min-height: 312px;
}
.tab-section-1 .tab-card .card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 25px;
  gap: 15px;
}
.tab-section-1 .tab-card .tab-card-image {
  flex: 1;
  border-radius: var(--border-radius-5xl);
  overflow: hidden;
}
.tab-section-1 .tab-card .tab-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tab-section-1 .highlight-box {
  background: var(--gray-100);
  border-radius: var(--border-radius-5xl);
  padding: 28px 25px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 685px;
}
.tab-section-1 .highlight-box .highlight-headline {
  font-weight: var(--font-weight-semibold);
  font-size: 18px;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0;
}
.tab-section-1 .highlight-box .highlight-body {
  color: var(--gray-600);
  margin: 0;
}
.tab-section-1 .tab-layout-image {
  gap: 0;
}
.tab-section-1 .tab-layout-image.active {
  display: block;
}
.tab-section-1 .tab-layout-image .tab-image {
  width: 100%;
  border-radius: var(--border-radius-5xl);
  overflow: hidden;
}
.tab-section-1 .tab-layout-image .tab-image img {
  width: 100%;
  height: auto;
  display: block;
}
.tab-section-1 .columns-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 20px;
}
.tab-section-1 .column-headline {
  color: var(--gray-700);
  font-weight: var(--font-weight-semibold);
}
.tab-section-1 .column-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab-section-1 .column-item .column-body {
  color: var(--body-default-font-color);
}
.tab-section-1 .tab-sub-headline {
  font-weight: 600;
}
@media screen and (max-width: 885px) {
  .tab-section-1.heading-layout-side_by_side .content {
    flex-direction: column;
  }
  .tab-section-1.heading-layout-side_by_side .section-side-one,
  .tab-section-1.heading-layout-side_by_side .section-side-two {
    width: 100%;
  }
  .tab-section-1 .section-side-two {
    flex-direction: column;
  }
  .tab-section-1 .tab-cards-container {
    grid-template-columns: 1fr;
  }
  .tab-section-1 .tab-card {
    flex-direction: column;
  }
  .tab-section-1 .tab-card .tab-card-image {
    height: 280px;
    flex: none;
  }
  .tab-section-1 .tab-card .card-text {
    padding: 20px;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .tab-section-1 .columns-container {
    grid-template-columns: 1fr;
  }
  .tab-section-1.heading-layout-side_by_side .section-side-one {
    flex-direction: column;
    gap: 10px;
  }
}

/*
========================================
Per-Client Field Visibility
========================================
*/