/* Multi-quarter research components */
.trend-section {
  padding: 82px 0;
  border-bottom: 1px solid var(--ink);
}

.trend-intro {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 42px;
  margin-bottom: 42px;
}

.trend-copy {
  max-width: 850px;
}

.trend-copy h2 {
  margin: 16px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}

.trend-copy > p:not(.section-label) {
  max-width: 740px;
  margin: 0;
  color: #39352f;
  font-size: 18px;
  line-height: 1.65;
}

.trend-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 42px;
}

.trend-summary > div {
  min-height: 220px;
  padding: 25px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.trend-summary > div:last-child { border-right: 0; }

.trend-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trend-summary strong {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}

.trend-summary p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
}

.data-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.research-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 13px;
}

.research-table th,
.research-table td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}

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

.research-table thead th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.research-table th:first-child,
.research-table td:first-child {
  text-align: left;
  padding-left: 0;
}

.research-table .metric-name {
  min-width: 190px;
  font-weight: 750;
  color: var(--ink);
}

.table-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.reading-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.reading-grid article {
  min-height: 310px;
  padding: 27px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.reading-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reading-grid h3 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.03em;
}

.reading-grid p {
  margin: auto 0 0;
  color: #464139;
  font-size: 14px;
  line-height: 1.55;
}

.lag-box {
  margin-top: 52px;
  padding: 32px 34px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 42px;
}

.lag-box span {
  color: #aaa59c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lag-box p {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.8vw, 36px);
  line-height: 1.28;
  letter-spacing: -.025em;
}

@media (max-width: 760px) {
  .trend-intro,
  .lag-box {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trend-summary,
  .reading-grid {
    grid-template-columns: 1fr;
  }

  .trend-summary > div {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .trend-summary > div:last-child { border-bottom: 0; }

  .reading-grid article { min-height: 260px; }

  .lag-box { padding: 28px 24px; }
}
