/* ==========================
   Box-Sizing
========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ==========================
   Grundtypografie
========================== */

html {
    font-size: 100%;
}

body {
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: 1.7;
}


/* Überschriften */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;

    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: 1.35rem;
    font-weight: 600;
}

h5 {
    font-size: 1.15rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}


/* Fließtext */

p {
    margin-top: 0;
    margin-bottom: 1.5rem;

    font-size: 1rem;
    line-height: 1.7;
}


/* Links */

a {
    color: var(--color-primary);
    text-decoration-color: var(--color-secondary);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
    color: var(--color-secondary);
}


/* Listen */

ul,
ol {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
}


/* Hervorhebungen */

strong {
    font-weight: 600;
}

em,
cite {
    font-style: italic;
}