/* components-card-aesthetic.css
 * Phase C: Card Aesthetic Layer
 * Extracted from legacy-styles-we-lost.txt (.card hover elevations)
 * Only visual styling: radius, overflow clip, hover transform, elevation shadow.
 */

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.card-header {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
  font-weight: 600; /* fallback weight; consider tokenizing */
}
