/*------- Layout 2 columns reverse -----------*/
.twoColumns-rev {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 50px;
}

.column {
    box-sizing: border-box;
    flex: 1 1 400px;
    max-width: 100%;
}

/*------- Headline space -----------*/
.mainHeadline {
    margin-bottom: 30px;
}

/*------- Download File -----------*/
.download {
    background-color: var(--yellowLight);
    text-decoration: none;
    padding: 10px;
    font-family: "YetsonMono", serif;
    margin-top: 20px;
    margin-bottom: 30px;
    display: block;
    width: max-content;
    max-width: 96%;
}

.download svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    padding-bottom: 3px;
}

/*------- Blockquote -----------*/
blockquote::before {
    content: open-quote;
    font-size: 200px;
    line-height: 53%;
    position: relative;
    bottom: 40px;
    left: -14px;
    font-family: "YetsonMono", serif;
}

blockquote::after {
    content: close-quote;
    font-size: 200px;
    position: relative;
    left: 80%;
    bottom: -80px;
    font-family: "YetsonMono", serif;
    line-height: 0%;
}

blockquote {
    position: sticky;
    top: 0;
}

blockquote p {
    padding: 20px 0;
    line-height: 127%;
}

.tablet-quote {
    display: none;
}



@media only screen and (max-width: 1185px) {
    .tablet-quote {
        display: inline;
    }
    .desktop-quote {
        display: none;
    }

    blockquote::after {
        left: calc(100% - 150px);
        bottom: -25px;
        line-height: 32%;
    }
    blockquote {
        position: initial;
    }
}

/*------- Streaming window -----------*/
iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/*------- Filmlist -----------*/
.year, .title {
    font-family: "YetsonSerif", serif;
    font-size: var(--medium);
    min-width: 90px;
}

.filmList h3 {
    margin-top: 0;
    font-size: var(--medium);
}

/*------- Arrow back -----------*/
.back {
    font-family: "YetsonMono", serif;
    font-size: var(--medium);
    width: 130px;
}

.back .arrows {
    font-size: var(--xLarge);
    font-family: "YetsonSerif", serif;
    line-height: 117%;
    text-decoration: none;
}

.back:has(a:hover) .arrows {
    color: var(--yellow);
}

@media only screen and (max-width: 900px) {
    .back {
        width: 100px;
        font-size: var(--normal);
    }
    .back .arrows {
        font-size: 3rem;
    }
}