////
///
/// Character Index
/// ===========================================================================
///
/// Forwards all character typography modules.
///
/// Structure:
/// - base/ (default, normal)
/// - variant/ (weight, style, case, size)
/// - semantic/ (link, code, mark, quote, abbreviation)
///
/// @group Typography.Character
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// Base - base character styles
@forward "base";

// Variant - typographic modifications
@forward "variant";

// Semantic - meaningful inline elements
@forward "semantic";

// ////
// ///
// /// Character Typography Mixins Module
// /// ===========================================================================
// ///
// /// @group Character
// /// @author Scape Press
// /// @link https://scape.style
// /// @since 0.1.0 initial release
// /// @todo None
// /// @access public
// /// @summary Mixins for typographic character-level styling.
// /// @description
// /// This module exposes a collection of atomic mixins and semantic styles
// /// that operate on character-level typographic elements (bold, italic, quote, etc.).
// ///
// ////

// // ============================================================================
// // Use
// // ============================================================================

// // ============================================================================
// // Forward
// // ============================================================================

// // Base variants
// @forward "base_default"; // Default character styling
// @forward "base_normal"; // Normalize font-style/weight

// // Emphasis
// @forward "style_bold"; // Bold text
// @forward "style_italic"; // Italic text
// @forward "oblique"; // Oblique style
// @forward "emphasis"; // Combined or semantic emphasis

// // Size / Small text
// @forward "variant_small"; // <small>, fine print or secondary tone

// // Font variants
// @forward "variant_script"; // Cursive/script-like
// @forward "variant_case"; // Uppercase, lowercase, title-case

// // Semantic elements
// @forward "semantic_abbreviation"; // Abbreviations (abbr, acronym)
// @forward "semantic_code"; // Inline code, monospace
// @forward "semantic_dropcap"; // Stylized drop-cap initial
// @forward "semantic_hyperlink"; // Styling for anchors and links
// @forward "semantic_lined"; // Underline, overline, strikethrough
// @forward "semantic_mark"; // Highlighted/marked text
// @forward "semantic_quote"; // Inline quotes

// // Special characters
// @forward "special"; // Decorative quotes or symbols
