.mb-20 {
    margin-bottom: 20px;
}

.video-release {
    font-weight: normal;
}

.video-options {
    padding: 20px;
    background: #f4fff4;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 1px 4px 6px #d6d6d6;
}

.video-options p {
    margin-bottom: 5px;
    font-size: 14px;
}

.video-options b {
    display: inline-block;
    min-width: 150px;
}

.video-options .bag {
    background-color: #0fa00e;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 6px;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.video-casts-section {
    margin-top: 50px;
}

.video-casts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
}

.video-casts-head {
    border-left: 6px solid #0fa00e;
    padding: 6px 0 3px 6px;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: #343434;
    font-family: var(--main-font);
}

.video-casts-item {
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    display: grid;
    grid-template-columns: 85px auto;
}

.video-casts-item .video-casts-avatar {
    width: 75px;
    height: 75px;
    background-image: url(avatar.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
}

.video-episode {
    margin-bottom: 50px;
    line-height: 2.4;
}

.video-episode .video-casts-head {
    line-height: 0.9;
    float: left;
    margin-right: 30px;
}

.video-episode a {
    display: inline-block;
    padding: 0px 20px;
    background: #ccc;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 14px;
}

.video-episode a.active,
.video-episode a:hover {
    background: #fff;
}

.video-related {
    margin-bottom: 40px;
}

.video-related-name {
    border-left: 6px solid #0fa00e;
    padding: 6px 0 3px 6px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: #343434;
    font-family: var(--main-font);
}

.video-related-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.video-related-col img {
    border-radius: 5px;
    max-height: 100%;
    display: block;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.video-related-info {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    padding: 70px 15px 10px;
    background: linear-gradient(175deg, rgba(24, 24, 24, 0) 50px, #000);
    border-radius: 0 0 5px 5px;
}

.video-related-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.25rem;
    font-family: var(--main-font);
    line-height: 1.2;
    color: #fff;
    margin-top: 15px;
}

.video-related-thumb {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.video-related-category {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0px 6px;
    font-size: 13px;
    background: #00000080;
    color: #fff;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .video-related-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .video-related-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .video-related-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .video-casts {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }

    .video-related-thumb,
    .recommended-thumb {
        height: 250px;
    }
}



/*--- Movie ---*/
.movie-main {
    padding-top: 30px;
    padding-bottom: 30px;
}

.movie-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.movie-col img {
    border-radius: 5px;
    max-height: 100%;
    display: block;
}

.movie-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.25rem;
    font-family: var(--main-font);
    line-height: 1.2;
    color: #fff;
}

.movie-thumb {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.movie-thumb img {
    display: block;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.movie-category {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0px 6px;
    font-size: 13px;
    background: #00000080;
    margin-bottom: 15px;
    color: #fff;
}

.movie-title a,
.movie-category a {
    color: #fff;
    text-decoration: none;
}

.movie-main .pagination-see-more {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.movie-player {
    background: #000;
    padding: 30px;
}


@media (max-width: 1024px) and (min-width: 769px) {
    .movie-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .movie-main {
        margin-left: 15px;
        margin-right: 15px;
    }

    .movie-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .movie-player {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .movie-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .movie-thumb {
        height: 250px;
    }

    .movie-player {
        padding: 0;
    }
}