

// ============================================================================
// icon.gl
// ============================================================================

// Ensures the CSS is interpreted using UTF-8 character encoding.
@charset "utf-8";


// Sass Module Imports
// ============================================================================
// Importing essential Sass modules and utilities for scalable and
// maintainable stylesheets.

@use "sass:math";       // Provides mathematical functions.



// Core Style Imports
// ============================================================================
// Forwarding core style modules to enable their use in other stylesheets
// without direct import.

@forward "variables";   // Centralizes CSS variables for consistent theming.
@forward "mixins";      // Centralizes SCSS mixins for consistent theming.
@forward "classes"; // Centralizes CSS classes for consistent theming.

@forward "font";        // Contains font-face definitions and font-related utilities.
// @forward "size";        // Defines size-related utility classes and mixins.
// @forward "state";       // Includes styles for various states (hover, active, etc.).
// @forward "transform";   // Provides CSS transformations utilities.
// @forward "list";        // Utilities for list styles and behaviors.


// Development Utilities
// ============================================================================
// Importing development-specific styles for debugging or development phase
// enhancements.

@use "dev/banner" as *;      // Development banner for branding or notices.
@include banner(""); // Including the development banner with a custom message.
