/* C4S Styles -> im Idealfall nicht verändern */

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    /* font-family: arial, sans-serif; */
}

html {
    font-size: 10px;
    overflow-y: auto;
}

#hgroup,
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
    display: block;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-text-stroke: 1px transparent;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    width: 100%;
}

a {
    color: inherit;
}

p+p {
    margin-top: 0.5em;
}

footer,
header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

header {
    position: sticky;
    top: 0;
    align-items: center;
}

nav li {
    list-style: none;
}

@media screen and (min-width: 769px) {
    .only_mobile {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .only_desktop {
        display: none !important;
    }

    header {
        flex-wrap: wrap;
    }

    footer {
        flex-direction: column;
    }

    .meta_panel {
        width: 100%;
    }
}