/***************************************************************************
* Calc Size
*
* Beispiel – Alle Elemente Proporional größer darstellen:
* @media screen and (min-width:100em){
*     :root {
*         --typo-calc-size: 1.125;
*     }
* }
****************************************************************************/
:root {
    --typo-calc-size: 1;
}
@media screen and (min-width: 75em){
    :root {
        --typo-calc-size: 1.125;
    }
}

@media screen and (min-width:90em){
    :root {
        --typo-calc-size: 1.25;
    }
}

@media screen and (min-width:120em){
    :root {
        --typo-calc-size: 1.375;
    }
}

/***************************************************************************
* Colors
****************************************************************************/
:root {
    --typo-color-text: #0a0a0a;
    --typo-color-light-grey: #F1F1F1;
    --typo-color-blue-light: #E8F4FB;
    --typo-color-blue: #1B94D5;
    --typo-color-green: #ACCC6E;
}

/***************************************************************************
* Basics
****************************************************************************/
:root {
    --typo-border-radius: calc(var(--typo-calc-size) * 1rem);
    --typo-border-radius-big: calc(var(--typo-calc-size) * 3rem);
    --typo-svg-arrow-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z"/></svg>');
    --typo-svg-arrow-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M73.4 297.4C60.9 309.9 60.9 330.2 73.4 342.7L233.4 502.7C245.9 515.2 266.2 515.2 278.7 502.7C291.2 490.2 291.2 469.9 278.7 457.4L173.3 352L544 352C561.7 352 576 337.7 576 320C576 302.3 561.7 288 544 288L173.3 288L278.7 182.6C291.2 170.1 291.2 149.8 278.7 137.3C266.2 124.8 245.9 124.8 233.4 137.3L73.4 297.3z"/></svg>');
    --typo-svg-arrow-right-white: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 640 640"><!--!Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z"/></svg>');
    --typo-svg-arrow-left-white: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 640 640"><!--!Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M73.4 297.4C60.9 309.9 60.9 330.2 73.4 342.7L233.4 502.7C245.9 515.2 266.2 515.2 278.7 502.7C291.2 490.2 291.2 469.9 278.7 457.4L173.3 352L544 352C561.7 352 576 337.7 576 320C576 302.3 561.7 288 544 288L173.3 288L278.7 182.6C291.2 170.1 291.2 149.8 278.7 137.3C266.2 124.8 245.9 124.8 233.4 137.3L73.4 297.3z"/></svg>');
}


/***************************************************************************
* Gaps
****************************************************************************/
:root {
    --typo-gap: calc(var(--typo-calc-size) * 1rem);
    --typo-half-gap: calc(var(--typo-calc-size) * 0.5rem);
    --typo-double-gap: calc(var(--typo-calc-size) * 2rem);
    --typo-section-gap: calc(var(--typo-calc-size) * 3rem);
}

@media screen and (min-width:40em){
    :root {
        --typo-section-gap: calc(var(--typo-calc-size) * 4rem);
    }
}

@media screen and (min-width:64em){
    :root {
        --typo-section-gap: calc(var(--typo-calc-size) * 6rem);
    }
}
/*
@media screen and (min-width:90em){
    :root {
        --typo-section-gap: calc(var(--typo-calc-size) * 8rem);
    }
}
*/

/***************************************************************************
* Font-Sizes
h1: 84
h2: 64
quote: 54
h3: 44
h4: 29
p: 23

****************************************************************************/
:root {
    --typo-font-size-default: calc(var(--typo-calc-size) * 1rem);
    --typo-font-size-h1: calc(var(--typo-calc-size) * 2rem);
    --typo-font-size-h2: calc(var(--typo-calc-size) * 1.875rem);
    --typo-font-size-quote: calc(var(--typo-calc-size) * 1.5rem);
    --typo-font-size-h3: calc(var(--typo-calc-size) * 1.375rem);
    --typo-font-size-h3-small: calc(var(--typo-calc-size) * 1.25rem);
    --typo-font-size-h4: calc(var(--typo-calc-size) * 1.125rem);
    --typo-font-size-small: calc(var(--typo-calc-size) * 0.875rem);
    --typo-font-size-very-small: calc(var(--typo-calc-size) * 0.75rem);
}

@media screen and (min-width:40em){
    :root {
        --typo-font-size-h1: calc(var(--typo-calc-size) * 2.875rem);
        --typo-font-size-h2: calc(var(--typo-calc-size) * 2.325rem);
        --typo-font-size-quote: calc(var(--typo-calc-size) * 2rem);
        --typo-font-size-h3: calc(var(--typo-calc-size) * 1.5rem);
        --typo-font-size-h3-small: calc(var(--typo-calc-size) * 1.375rem);
        --typo-font-size-h4: calc(var(--typo-calc-size) * 1.125rem);
    }
}

@media screen and (min-width:64em){
    :root {
        --typo-font-size-h1: calc(var(--typo-calc-size) * 3.625rem);
        --typo-font-size-h2: calc(var(--typo-calc-size) * 2.875rem);
        --typo-font-size-quote: calc(var(--typo-calc-size) * 2.325rem);
        --typo-font-size-h3: calc(var(--typo-calc-size) * 1.9375rem);
        --typo-font-size-h3-small: calc(var(--typo-calc-size) * 1.675rem);
        --typo-font-size-h4: calc(var(--typo-calc-size) * 1.25rem);
    }
}

@media screen and (min-width:90em){
    :root {
        --typo-font-size-very-small: calc(var(--typo-calc-size) * 0.625rem);
    }
}