.tcg-video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tcg-video-player {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.horizontal-left,
.horizontal-right,
.vertical-left,
.vertical-right {
    display: inline-block;
}

.horizontal-left,
.vertical-left {
    float: left;
    margin: 10px 10px 10px 0;
}

.horizontal-right,
.vertical-right {
    float: right;
    margin: 10px 0 10px 10px;
}

@media screen and (min-width: 601px) {
    .horizontal-left,
    .horizontal-right {
        width: 588px;
        height: auto;
    }

    .vertical-left,
    .vertical-right {
        width: 331px;
        height: 588px;
    }
}

@media screen and (max-width: 600px) {
    .horizontal-left,
    .horizontal-right {
        width: 100%;
        height: auto;
    }

    .vertical-left,
    .vertical-right {
        width: 331px;
        height: 588px;
    }

    .horizontal-left,
    .horizontal-right {
        margin: auto;
    }
}

@media screen and (max-width: 480px) {
    .vertical-left,
    .vertical-right {
        width: auto;
        height: auto;
        margin-left: 0;
        margin-right: 0;
        float: none;
        margin: 10px auto;
        display: flex;
    }

    .vertical-left,
    .vertical-right {
        max-width: 100%;
        max-height: calc(100vh - 40px);
        float: none;
    }

    .horizontal-left,
    .horizontal-right {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: calc(100vh - 40px);
        float: none;
        margin: 10px auto;
        display: flex;
    }
}