/* ==========================================================================
   ECCO
   ========================================================================== */

/* The problem statement, set as a statement rather than shown as a slide. */
.ec-statement {
  max-width: 980px;
  margin: 0;
  padding-left: 28px;

  border-left: 2px solid var(--pantone-peach-dust);

  font-size: 27px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.ec-statement strong { font-weight: 500; }

@media (max-width: 860px) {
  .ec-statement {
    font-size: 21px;
    padding-left: 20px;
  }
}

/* ========================================
   AT A GLANCE
   The meta column runs much longer than the intro copy, so the right side
   of the intro grid was left with a tall gap. This fills it with the two
   things a reader wants first: how big the study was, and what got built.
======================================== */

.ec-scale {
  margin-top: 64px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 40px;
}

.ec-scale > div {
  border-top: 1px solid var(--rule, rgba(0, 0, 0, 0.12));
  padding-top: 16px;
}

.ec-scale dt {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.ec-scale dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted, #666);
  max-width: 24ch;
}

@media (max-width: 900px) {
  .ec-scale { margin-top: 48px; column-gap: 28px; row-gap: 32px; }
  .ec-scale dt { font-size: 36px; }
}
