.video-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.video-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-gallery-container {
    background: #f8f9fa;
}


/* Filter buttons styling */

.video-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.video_thumb {
    width: 100%;
    height: 315px;
}


/* Responsive filter buttons */

@media (max-width: 768px) {
    .filter-btn {
        margin: 5px;
        padding: 8px 16px;
        font-size: 14px;
    }
}