/*
 * USWDS Core Styles - Tree-Shaking Base
 *
 * This file contains only the essential USWDS core styles needed by all components:
 * - Theme settings and variables
 * - Typography tokens
 * - Color tokens
 * - Grid system
 * - Utility classes (layout, spacing, etc.)
 *
 * Individual components should import this core plus their specific component styles.
 */

// All @use rules must come first in SASS
@use "@uswds/uswds/packages/uswds-core" as *;

// Typography essentials
@use "@uswds/uswds/packages/uswds-fonts";

// Grid system (used by most components)
@use "@uswds/uswds/packages/usa-layout-grid";

// Core utility classes that components depend on
@use "@uswds/uswds/packages/uswds-utilities";

// Media block (used by many components)
@use "@uswds/uswds/packages/usa-media-block";