.ai-box.ai-insight-card {
  padding: 22px 24px;
  background: linear-gradient(180deg, #fffdf8 0%, #fffbf1 100%);
  overflow: hidden;
}

.ai-insight-card .eyebrow {
  margin-bottom: 7px;
}

.ai-insight-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.ai-insight-card .ai-insight-summary {
  max-width: 88ch;
  margin: 11px 0 0;
  color: #25342c;
  line-height: 1.5;
}

.ai-insight-focus {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #eadfc7;
}

.ai-insight-focus-title {
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6d5a32;
}

.ai-insight-actions {
  list-style: none;
  padding: 0;
  margin: 9px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px 14px;
  counter-reset: insight-step;
}

.ai-insight-actions li {
  counter-increment: insight-step;
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #35443c;
  font-size: .91rem;
  line-height: 1.42;
}

.ai-insight-actions li::before {
  content: counter(insight-step);
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #f2e6c9;
  color: #725719;
  font-size: 11px;
  font-weight: 850;
}

.ai-insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #eadfc7;
}

.ai-insight-footer-solo {
  justify-content: flex-end;
}

.ai-insight-meta {
  min-width: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.ai-insight-footer .btn {
  flex: 0 0 auto;
  padding: 7px 10px;
}

@media (max-width: 640px) {
  .ai-box.ai-insight-card {
    padding: 18px;
  }

  .ai-insight-actions {
    grid-template-columns: 1fr;
  }

  .ai-insight-footer {
    align-items: flex-start;
  }
}
