/* INTENT CARDS (CEO / CFO / CTO) */

.intent-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 16px;
  margin: 24px 0 12px;
}

.intent-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
}

.intent-card:hover {
  border-color: #f9ba00;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.intent-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #02154e;
  margin-bottom: 6px;
}

.intent-card p {
  font-size: 13px;
  color: #6b7280;
}
