.u-wysiwyg {
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.6;
}

/* Nadpisy */
.u-wysiwyg h1 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    margin: 1.5rem 0 0.75rem;
}

@media (min-width: 1024px) {
    .u-wysiwyg h1 {
        font-size: 50px;
        line-height: 65px;
    }
}

.u-wysiwyg h2 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin: 1.5rem 0 0.75rem;
}

@media (min-width: 1024px) {
    .u-wysiwyg h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.u-wysiwyg h3 {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    margin: 1.25rem 0 0.5rem;
}

@media (min-width: 1024px) {
    .u-wysiwyg h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Odstavce */
.u-wysiwyg p {
    margin: 0 0 1rem;
}

/* Seznamy */
.u-wysiwyg ul,
.u-wysiwyg ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

.u-wysiwyg ul {
    list-style: disc;
}

.u-wysiwyg ol {
    list-style: decimal;
}

/* Odkazy */
.u-wysiwyg-hover-blue a {
    &:hover {
        color: var(--c-primary);
        text-decoration: underline;
    }
}

.u-wysiwyg-hover-dark-blue a {
    &:hover {
        color: var(--c-primary-dark);
        text-decoration: underline;
    }
}

.u-wysiwyg-hover-white a {
    &:hover {
        color: white;
        text-decoration: underline;
    }
}


.u-wysiwyg-hover-accent a {
    &:hover {
        color: var(--c-accent);
        text-decoration: underline;
    }
}



/*.u-wysiwyg a:hover {*/
/*    color: var(--c-primary);*/
/*}*/

/* Citace */
.u-wysiwyg blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--c-primary);
    font-style: italic;
}

/* Obrázky */
.u-wysiwyg img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
}