////
///
/// Text Truncate Mixins
/// ===========================================================================
///
/// Text truncation utility mixins for single and multi-line ellipsis.
///
/// @group Mixins.Utilities
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// ============================================================================
// Mixins
// ============================================================================

/// Single line text truncation with ellipsis
@mixin text--truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/// Multi-line text truncation
/// @param {Number} $lines - Number of lines before truncation
@mixin text--truncate-lines($lines: 2) {
    display: -webkit-box;
    -webkit-line-clamp: $lines;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/// Two line truncation
@mixin text--truncate-2 {
    @include text--truncate-lines(2);
}

/// Three line truncation
@mixin text--truncate-3 {
    @include text--truncate-lines(3);
}
