Global foundation and local component style
// app/layout.tsx
import './globals.css';
// TicketCard.tsx
import styles from './TicketCard.module.css';
return <article className={styles.card}>...</article>;The root imports global foundations; the card owns its isolated rules.