.chart-section-3 .content {
  flex-direction: column;
  gap: 40px;
}
.chart-section-3 .heading-eyebrow {
  margin: 0;
}
.chart-section-3 .chart-columns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}
.chart-section-3 .chart-card {
  --chart-card-bg: var(--gray-50);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: var(--border-radius-6xl);
  background: linear-gradient(var(--chart-card-bg), var(--chart-card-bg)) padding-box, linear-gradient(180deg, var(--gray-100), var(--gray-200)) border-box;
  box-shadow: inset 0 -2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  padding: 30px;
}
.chart-section-3.gray-background-color .chart-card {
  --chart-card-bg: #fff;
}
.chart-section-3 .chart-side-1 {
  flex: 2;
  min-width: 0;
  gap: 10px;
  padding-top: 20px;
}
.chart-section-3 .chart-side-1 .chart-text {
  flex: 4;
}
.chart-section-3 .chart-side-2 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chart-section-3 .chart-text-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chart-section-3 .chart-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chart-section-3 .chart-percentage {
  color: var(--gray-600);
  font-weight: 500;
}
.chart-section-3 .chart-body {
  color: var(--gray-600);
  margin: 0;
}
.chart-section-3 .chart-image-wrap {
  width: 100%;
  flex: 5;
  display: flex;
  align-self: center;
}
.chart-section-3 .chart-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-2xl);
}
@media screen and (max-width: 1023px) {
  .chart-section-3 .chart-columns {
    flex-direction: column;
  }
  .chart-section-3 .chart-side-2 {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .chart-section-3 .chart-side-1 {
    flex-direction: column;
    gap: 40px;
  }
  .chart-section-3 .chart-image-wrap {
    padding-top: 0;
  }
  .chart-section-3 .chart-side-2 {
    flex-direction: column;
  }
}

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