
/* =========================================================
   Top page only
   ========================================================= */

.top-insights-summary {
  display: grid;
  gap: 18px;
}

.top-insight-group {
  padding-top: 8px;
}

.top-insight-group-title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.top-insight-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.top-insight-card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}

.top-insight-card:hover {
  transform: translateY(-3px);
  border-color: #9d9d96;
}

.top-insight-card .insight-labels {
  justify-content: flex-start;
}

.top-insight-card h3 {
  margin: auto 0 18px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.top-insight-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .05em;
}

.insights-all-link {
  margin-top: 24px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .top-insight-cards {
    grid-template-columns: 1fr;
  }
}
