/**
 * CARDS COMPONENT
 * Base card surface styles shared across multiple sections.
 * Applied to: Car gallery cards (gallery.css), Features cards (features.css)
 * This file only defines the shared surface appearance; specific layouts are in section files.
 */

/* Base card surface - Light gray background with medium rounded corners */
.card {
  background-color: var(--color-background-cards);
  border-radius: var(
    --border-radius-medium
  ); /* 15px - Medium rounded corners */
}

/* Note: Layout (padding, grid placement, content arrangement) is handled in:
 * - gallery.css for car gallery cards
 * - features.css for feature cards */
