.campaign-results {
  border-top: 1px solid var(--line);
}

.results-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.results-snapshot > div {
  min-width: 0;
  padding: 28px 30px 30px;
  border-right: 1px solid var(--line);
}

.results-snapshot > div:last-child {
  border-right: 0;
}

.results-snapshot span,
.results-snapshot strong,
.results-snapshot small {
  display: block;
}

.results-snapshot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.results-snapshot strong {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.results-snapshot small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.results-table-wrap {
  overflow-x: auto;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.results-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

.results-table caption {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

.results-table th,
.results-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14px;
}

.results-table thead th {
  color: var(--muted);
  background: #f3f4f8;
  font-size: 11px;
  text-transform: uppercase;
}

.results-table tbody tr:last-child th,
.results-table tbody tr:last-child td {
  border-bottom: 0;
}

.results-table tbody th strong,
.results-table tbody th span {
  display: block;
}

.results-table tbody th strong {
  font-size: 16px;
}

.results-table tbody th span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.result-badge--fact {
  color: var(--green);
  background: #ddf6ea;
}

.result-badge--model {
  color: var(--amber);
  background: #fff0c9;
}

.economics {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: 60px;
  align-items: center;
  margin-top: 70px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.economics__copy h3 {
  max-width: 500px;
  font-size: clamp(32px, 4vw, 50px);
}

.economics__copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.economics__copy .button {
  margin-top: 20px;
}

.economics__table {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.economics__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr);
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.economics__row:last-child {
  border-bottom: 0;
}

.economics__row span {
  color: var(--ink-soft);
  font-size: 13px;
}

.economics__row strong {
  font-size: 16px;
  text-align: right;
}

.economics__row--head {
  min-height: 48px;
  background: #f3f4f8;
}

.economics__row--head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.economics__row--head span:last-child {
  text-align: right;
}

.results-note {
  max-width: 1040px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.results-note a {
  color: var(--blue);
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .economics {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .results-snapshot {
    grid-template-columns: 1fr;
  }

  .results-snapshot > div {
    padding: 22px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .results-snapshot > div:last-child {
    border-bottom: 0;
  }

  .results-table-wrap {
    margin-right: -14px;
    margin-left: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .economics {
    margin-top: 54px;
    padding-top: 46px;
  }

  .economics__copy .button {
    width: 100%;
  }

  .economics__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .economics__row--head {
    display: none;
  }

  .economics__row strong {
    text-align: left;
  }
}
