/* Font Clamp */

html { font-size: 16px; } /* Default root size */

.fs-xs :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(0.75rem, 0.75000rem + 0.00000vw, 0.75rem);
    line-height: 1.5;
}

.fs-sm :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(0.88rem, 0.87500rem + 0.00000vw, 0.88rem);
    line-height: 1.5;
}

.fs-base :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.00rem, 1.00000rem + 0.00000vw, 1.00rem);
    line-height: 1.5;
}

.fs-lg :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.13rem, 1.08099rem + 0.18779vw, 1.25rem);
    line-height: 1.5;
}

.fs-xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.25rem, 1.16197rem + 0.37559vw, 1.50rem);
    line-height: 1.3;
}

.fs-2xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.50rem, 1.36796rem + 0.56338vw, 1.88rem);
    line-height: 1.3;
}

.fs-3xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.88rem, 1.74296rem + 0.56338vw, 2.25rem);
    line-height: 1.3;
}

.fs-4xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(2.25rem, 2.11796rem + 0.56338vw, 2.63rem);
    line-height: 1.3;
}

.fs-5xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(2.63rem, 2.49296rem + 0.56338vw, 3.00rem);
    line-height: 1.3;
}

.fs-6xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(3.00rem, 2.73592rem + 1.12676vw, 3.75rem);
    line-height: 1.3;
}

.fs-7xl :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(3.75rem, 3.48592rem + 1.12676vw, 4.50rem);
    line-height: 1.3;
}

