.insight-section {
  padding: 1rem;
}

.insight-entry {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.insight-icon {
  min-width: 40px;
  height: 40px;
  background-color: #374151; /* Tailwind slate-700 */
  color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  opacity: 1;
}

.insight-icon::before {
  content: attr(data-icon);
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  padding: 2px;
}

.insight-card {
  background-color: #111827; /* dark navy */
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.insight-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.insight-card .subheading {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.insight-card p {
  font-size: 0.875rem;
  margin: 0;
}

[data-icon]::before {
  content: attr(data-icon);
  color: #1e293b;
  font-weight: 600;
}

