.row-wrapper {
    width: 100%;
}

.contents-left {
    width: 60%;

}

.image {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;

}

.contents-right {
    width: 38%;

    background-color: rgb(253, 242, 212);
    padding: 15px 15px 15px 15px;
    margin-left: 0px;
    border: solid 2px;
    border-radius: 12px;
}

.controller {
    display: flex;
    justify-content: center;
}

.pagination {
    margin: auto 0;
}

.contents-title {
    width: 100%;
}

.event-date {
    width:20%;
    background-color: rgb(253, 242, 212);
    padding-left: 0;
    margin-top: 18px;
    margin-bottom: 18px;
    border: solid 1px;
    border-radius: 12px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.next-live {
    width: 100%;
    object-fit: contain;
}

.top-space{
    margin-top:20px;
    margin-bottom:20px;
}

@media (max-width:992px) {

    .row-wrapper,
    .contents-title {
        display: flex;
        flex-direction: column;
    }

    .schedule-wrapper {
        width: 100%;
    }

    .contents-left,
    .contents-right {
        width: 100%;
    }

    .contents-left {
        padding: 0;
        margin-bottom: 4px;
    }

    .event-date {
        width: 35%;
        background-color: rgb(253, 242, 212);
        padding-left: 0;
        margin-top: 8px;
        margin-bottom: 8px;
        border: solid 2px;
        border-radius: 12px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    }


}


