.section {
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    > h1, .header > h1 {
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 8px;
    }
    margin-bottom: 15px;
}


.release-header {
    display: flex;
    align-items: stretch;
    margin-top: 50px;
    margin-bottom: 30px;
    img {
        box-shadow: 0px 10px 15px #0001;
        height: 360px;
        border-radius: var(--border-radius-big);
    }
    color: white;
    >div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
        padding-left: 30px;
        line-height: 1;
        filter: drop-shadow(0px 5px 8px #0002);
        h1 {
            font-size: 60px;
            font-weight: 500;
        }
        h3 {
            font-size: 24px;
            font-weight: 400;
        }
        h4 {
            background: #0002;
            border-radius: var(--border-radius);
            font-size: 20px;
            display: inline-block;
            padding: 12px;
            margin-top: 12px;
        }

        p {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 6px;
        }
        small {
            font-size: 18px;
            font-weight: 300;
        }

        a {
            color: white;
            text-decoration: underline;
        }

        &:before, &:after {
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 25%;
            background: #000a;
            position: absolute;
            border-radius: var(--border-radius);
            z-index: -1;
            filter: blur(100px);
            transform: scale(0.8);
        }
        &:after {
            top: auto;
            bottom: 0;
        }
    }
}

.release-content {
    .osu {
        background: #ff66aa;
        border-radius: var(--border-radius);
        display: flex;
        padding: 16px;
        color: white;
        margin-bottom: 8px;
        overflow: hidden;
        align-items: center;
        gap: 8px;
        i {
            font-size: 30px;
        }
    }
    margin-top: 15px;
    display: flex;
    gap: 20px;


    .left {
        flex: 1;
    }
    .right {
        flex: 1;
        max-width: 413px;
        iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: var(--border-radius);
        }
    }
}
@media (max-width: 601px) {
    .release-content, .release-header {
        flex-direction: column;
    }

    .release-header {

        align-items: center;
        justify-content: center;

        > img {
            aspect-ratio: 1 / 1;
            width: 70vw;
            height: auto;
            max-width: 400px;
        }
        > div {
            padding: 0px;
            margin-top: 20px;
            color: #222;
            filter: none;
            &:before, &:after {
                display: none;
            }
            a {
                color: inherit;
            }
            h1 {
                color: #333;
                margin-bottom: 8px;
                font-size: 46px;
            }
            h3 {
                font-size: 24px;
            }

            h4 {

            }

            text-align: center;

            > div:last-child {
                text-align: center;
                margin-top: 30px;
                color: #666;
                margin-bottom: 50px;

                p {
                    font-size: 22px;
                }
                small {
                    font-size: 16px;
                }
            }
        }
    }
}


/*# sourceMappingURL=release.css.map*/