.analysis-table.bg-black {
  --text-color: rgba(255, 255, 255, 0.80);
  --title-color: var(--white);
  --card-bg: rgba(255, 255, 255, 0.10);
  --heading-color: var(--white);
  --border-color: rgba(255, 255, 255, 0.20);
}
.analysis-table.bg-off-white {
  --card-bg: var(--white);
  --heading-color: var(--brand-800);
}
.analysis-table h2 {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .analysis-table h2 {
    margin-bottom: 3rem;
  }
}
.analysis-table table thead tr,
.analysis-table table tbody tr {
  border-bottom: 1px solid var(--border-color);
}
.analysis-table table th,
.analysis-table table td {
  width: 38.46%;
  padding: 1rem;
}
@media (min-width: 992px) {
  .analysis-table table th,
  .analysis-table table td {
    width: 38.25%;
    padding: 1.5rem;
  }
}
.analysis-table table th:first-child,
.analysis-table table td:first-child {
  width: 23.08%;
  padding-left: 0;
}
@media (min-width: 992px) {
  .analysis-table table th:first-child,
  .analysis-table table td:first-child {
    width: 23.5%;
  }
}
.analysis-table table th:last-child,
.analysis-table table td:last-child {
  background: var(--card-bg);
}
.analysis-table table p {
  margin-bottom: 0;
  color: var(--text-color);
}
.analysis-table table .h6 {
  color: var(--title-color);
}