/* Video Detail Page Styles */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.breadcrumb {
    background: transparent;
    padding: 10px 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0056b3;
}

.breadcrumb-item.active {
    color: #0056b3;
    font-weight: 600;
}

.page-header {
    text-align: center;
    padding: 40px 0;

    margin-bottom: 50px;
}

.page-header h1 {
    color: #0056b3;
    font-weight: bold;
    font-size: 3rem;
    margin: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    margin-bottom: 60px;
}

.video-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
}

.video-item-link:hover .video-item {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e9ecef;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .video-thumbnail {
        height: 150px;
    }

    .video-info {
        padding: 15px;
    }

    .video-info h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
