////
///
/// Stretched Link Utility
/// ===========================================================================
///
/// Apply to an `<a>` inside a `position: relative` parent to make the
/// entire parent clickable.
///
/// @group Utilities.Interaction
/// @author Scape Press
/// @link https://scape.style
/// @since 0.3.0
/// @access public
///
////

@layer ss.utilities {
    .ss-u-stretched-link::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: auto;
        background-color: rgba(0, 0, 0, 0);
    }
}
