.video-title {
    margin-top: 15px;
}

.video-container {
    display: flex;
    flex-direction: column;
    color: #000;
    padding: 20px;
}

.video-descriptions {
    width: 100%;
}

.video-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
}

.video-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.video-title {
    font-size: 29px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    text-align: right;
}

.video-player-container {
    width: 71%;
}

.video-player {
    width: 100%;
}

.video-player > div {
    width: 100%;
}

.video-meta {
    margin-top: 5px;
}

.video-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid #00000029;
}

.video-views {
    font-weight: 500;
}

.video-info .first-section span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-end: 10px;
    font-weight: 500;
    color: black;
}

.video-info .first-section {
    width: 80%;
    display: flex;
    flex-direction: row;
}

.video-channel {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.video-channel span {
    font-weight: 700;
    margin-left: 5px;
}

.video-channel img {
    width: 60px;
}

.video-cats-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.video-cats, .video-tags {
    display: flex;
    gap: 10px;
    color: #bbb;
    align-items: center;
    
}

.video-cat, .video-tag {
    background-color: var(--hmt-primary-color);
    padding: 0px 10px;
    border-radius: 5px;
    color: white;
}

.video-cat:hover, .video-tag:hover {
    background-color: var(--hmt-primary-color-alpha10);
    color: #000;
}

.related-videos {
    width: 26%;
}

.related-videos h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.related-videos h3 i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .video-cat, .video-tag {
        padding: 0px 7.5px;
    }
    .video-info {
        width: 100%;
    }
    .video-info .first-section {
        width: 100%;
        flex-wrap: wrap;
    }
    .video-info .first-section span {
        width: 50%;
        margin: 0;
    }
    .video-cats-tags {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .video-info .video-channel {
        display: none;
        width: 100%;
        justify-content: flex-start;
    }
    .video-info .video-channel span {
        text-align: left;
    }
    .video-container {
        flex-direction: column;
    }

    .video-content {
        flex-direction: column;
    }

    .video-player-container {
        width: 100%;   
    }

    .related-videos {
        width: 100%;
        margin-top: 30px;
    }

    .video-title {
        font-size: 18px;
    }

    .video-info span {
        width: 46%;
    }
}

.video-comments-container {
    margin-top: 20px;
}

.video-comments-container #comments {
    box-shadow: none;
}