.schedule-section {
    background: #5E5651;
    padding: 30px;
    color: #fff;
    margin-top: 60px;
    min-height: 100%;
}

.schedule-list-content {
    border: 5px solid #fff;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    font-size: 16px;
}

.schedule-list {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 300px;
}

.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0) 100%)
}

.stream-content {
    position: relative;
    z-index: 2;
    padding: 10px;
    font-size: 24px;
}

.stream-title {
    font-size: 32px;
    font-weight: bold;
}

.game {
    font-style: italic;
    color: #9e9e9e;
}

.stream-time {
    font-size: 20px;
    padding: 5px 10px;
    color: #fff;
    background: #C61618;
    width: fit-content;
}



@media (max-width: 1300px) {
    .avatar-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        grid-gap: 10px;
    }
}

@media (max-width: 900px) {
    .avatar-list {
        width: 50%;
    }

    .avatar-detail {
        width: 50%;
    }
}

@media (max-width: 700px) {
    .side-by-side-section {
        flex-direction: column-reverse;
    }
    .avatar-list {
        width: 100%;
    }

    .avatar-detail {
        width: 100%;
    }
}