@charset "utf-8";
.kcYouTube {
}

/* Header */
.kcYouTube__header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

/* Category Navigation */
.kcYouTube__category {
    float: left;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.kcYouTube__category-item {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 0;
    font-size: 16px;
}

.kcYouTube__category-item:last-child{
    margin-right: 0;
}

.kcYouTube__category-item a {
    display: block;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
}

.kcYouTube__category-item a:hover,
.kcYouTube__category-item a:focus {
    color: #000;
}

.kcYouTube__category-item.is-active a {
    background-color: #000;
    border-color: #000;
    font-weight: 700;
    color: #fff;
}

/* Utility Buttons */
.kcYouTube__utils {
    float: right;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.kcYouTube__button {
    display: inline-block;
    margin-left: 5px;
}

.kcYouTube__button a {
    display: block;
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.kcYouTube__button a:hover,
.kcYouTube__button a:focus {
    background: #cc0000;
    color: #fff !important;
}

/* Video List */
.kcYouTube__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kcYouTube__item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.kcYouTube__thumbnail {
    border-radius: 12px;
    overflow: hidden;
}

.kcYouTube__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kcYouTube__title {
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.5;
    font-weight: 700;
    color: #333;
}

.kcYouTube__info {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
    color: #666
}

.kcYouTube__title a,
.kcYouTube__description a {
    text-decoration: none;
    color: inherit;
}


/* Video Player */
.kcYouTube__player-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.kcYouTube__player-title {
    margin-top: 0;
    margin-bottom: 4px;
    line-height: 1.5;
}

.kcYouTube__player-info {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.kcYouTube__player-description {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .kcYouTube__thumbnail {
        float: left;
        margin-right: 30px;
    }

    .kcYouTube__description {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        color: #666;
    }
}
@media (min-width: 1200px) {
    .kcYouTube__thumbnail {
        width: 400px;
        height: 225px;
    }

    .kcYouTube__description {
        -webkit-line-clamp: 7;
    }
}
@media (max-width: 1199.99px) {
    .kcYouTube__thumbnail {
        width: 320px;
        height: 180px;
    }
}

@media (max-width: 767.99px) {
    .kcYouTube__category-item a,
    .kcYouTube__button a{
        padding:4px 6px;
    }

    .kcYouTube__button {
        display: none;
    }

    .kcYouTube__thumbnail {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .kcYouTube__title.list-title {
        font-weight: 400;
        font-size: 16px;
    }

    .kcYouTube__description {
        display: none;
    }
}
