/* /insights/ landing page — same layout pattern as tools-index.css
   (single-column card grid + dark CTA), own class names since it's a
   distinct section from /tools/. */
.insights-index { background: #fff; padding-top: 52px; }
.insights-index .container { max-width: 900px; }

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .insights-grid { grid-template-columns: 1fr 1fr; } }

.insight-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.insight-card:hover {
  border-color: var(--navy);
  box-shadow: 0 20px 45px -28px rgba(15, 23, 42, .35);
  transform: translateY(-2px);
}
.insight-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #EFF4FF;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.insight-card h2 { font-size: 1.2rem; margin: 0 0 8px; }
.insight-card p { color: var(--text-muted); font-size: .95rem; margin: 0 0 14px; line-height: 1.55; }
.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.insight-card__tag {
  font-size: .74rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
}
.insight-card__go { font-weight: 600; font-size: .9rem; color: var(--orange); }

.insights-cta {
  margin-top: 34px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
}
.insights-cta h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.insights-cta p { color: #CBD5E1; font-size: .96rem; margin: 0 auto 18px; max-width: 460px; }
