// Possible additions (place to collect code used in other projects that might be generally useful

/// Create a css value structure with a target value that gets clamped to a min / max (e.g.
/// max($min, min($target, $max)).
@function target-min-max($target: 2vw, $min: 14px, $max: 24px) {
    @return max(#{$min}, min(#{$target}, #{$max}));
}

/// Create a font-size that can scale using a scalable unit (like vw) but fixed to a min and max value
@mixin font-size-scale($target, $min, $max) {
    font-size: misc.target-min-max($target, $min, $max);
}
