.postContent {
    display: inline;

    margin-top: 20px;
    
    width: 1600px;
    aspect-ratio: 1.3;
    box-sizing: border-box;
    transition: transform 0.5s;
}
.postContent:has(.flipRight:checked) {
    transform: translateX(-800px);
    transition: transform 0.5s;
}
.mainContent {
    margin-top: 20px;
    
    box-sizing: border-box;
}

.split {
    gap: 8.5px;
}
.splitSection {
    margin-left: 3px;
    margin-right: 3px;
}

.postSplit {
    display: flex;

    gap: 20px;
}
.postSplitSection {
    flex: 1;
}
.postSplitThird {
    flex-basis: calc(33.3% - 13px);
}

.postTextColumns {
    column-count: 3;
    gap: 20px;
}

.imageWide {
    margin-bottom: 15px;

    width: 100%;
}
.imageWide img {
    margin-bottom: -5px;

    width: 100%;
}
.imageNarrow {
    width: 100%;
}

.flip {
    text-align: right;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.flipLeft, .flipRight {
    width: 0;
    height: 0;
    opacity: 0;
}
.flipButtons {
    display: flex;
    flex-direction: column;
    align-self: center;
    
    gap: 10px;
}
.flipButtons .flip {
    padding-right: 7px;
    padding-bottom: 2px;

    text-decoration: none;
    border: 2px solid var(--text);
    border-radius: 14px; 
    transition: filter 0.25s;
}
.flipButtons .flip:hover {
    filter: drop-shadow(3px 3px 0px var(--link));
    transition: filter 0.25s;
}

.mainContent header {
    margin: 0;
}
.mainContent header hr {
    margin-top: 0;
}

.backHome {
    height: auto;

    margin-bottom: 0;
    margin-top: 10px;

    font-family: "Gochi Hand";
    transform: rotate(1deg);
}
.backHome img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: 9em;

    z-index: -1;
    filter: drop-shadow(3px 3px 5px var(--text));
}
.backHome p {
    margin-top: 3px;
    margin-bottom: 5px;

    width: 100%;
    text-align: center;
}

h1.headline {
    margin-bottom: 0;
}
.subtitle {
    margin-bottom: 25px;
}

.spacer20 {
    height: 20px;
}

.video {
    margin-top: 105px;
    transform: scale(1.78);
}

article.scrollFadeMask:has(#c_widget) {
    height: 1150px;
}

@media(max-width: 815px) {
    .postContent {
        width: auto;
        aspect-ratio: 0;
    }
    
    .split {
        gap: 15px;
    }

    .postSplit {
        flex-direction: column;

        gap: 0;
    }
    
    .flip, .flipButtons {
        display: none;
    }
    
    article h2:not(#c_widgetTitle) {
        font-size: 5vw;
    }
    
    .pSection img {
        filter: none;
    }
    
    .video {
        margin-top: 36.5vw;
        margin-bottom: 140px;
    }
    
    article.scrollFadeMask:has(#c_widget) {
        height: auto;
    }
}