/* --- TRANG DANH SÁCH VIDEO --- */

.video-breadcrumbs-wrapper {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #666;
}

.video-archive-header {
    margin-bottom: 30px;
}

.video-archive-title {
    font-size: 1.5em;
    font-weight: bold;
}

/* Card Video */
.video-card-link {
    display: block;
}

.video-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Tỷ lệ 16:9 */
    overflow: hidden;
    border: 1px solid #eee;
    background-color: #000;
}

.video-card-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Nút Play */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-play-btn {
    background: #ff0000;
    color: #fff;
    width: 55px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.video-card-content {
    padding-top: 15px;
}

.video-card-title {
    font-size: 1.05em;
    font-weight: bold;
    line-height: 1.4;
    color: #222;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Pagination */
.video-pagination-container {
    text-align: center;
    margin: 40px 0;
}

.no-video-found {
    color: #888;
}

/* HOVER EFFECTS */
.video-card-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-card-link:hover .video-play-btn {
    background: #cc0000;
}

.video-card-link:hover .video-card-title {
    color: #f7a33e;
}
/* --- MENU DANH MỤC VIDEO --- */
.video-archive-header {
    margin-bottom: 30px;
}

.video-archive-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.video-term-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.video-term-list .term-item {
    margin: 0;
    padding: 0;
}

.video-term-list .term-link {
    display: inline-block;
    background-color: #f58f20; /* Màu cam mặc định */
    color: #fff;
    padding: 8px 24px;
    border-radius: 99px; /* Bo tròn dạng viên thuốc */
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Hiệu ứng khi Hover và khi Active (Đang xem danh mục đó) */
.video-term-list .term-link:hover,
.video-term-list .term-link.active {
    background-color: #232733; /* Màu xanh đen */
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}