﻿/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 24px;
}

    .breadcrumb a {
        color: #666;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: #333;
        }

    .breadcrumb span {
        margin: 0 8px;
        color: #999;
    }

    .breadcrumb .active {
        color: #22c55e;
    }

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 240px;
    background-color: #0a1929;
    border-radius: 12px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("img/Ads.png");
        background-size: 100% 100%;
        opacity: 0.1;
        animation: wave 20s linear infinite;
    }

@keyframes wave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Video Section */
.video-section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #111 !important;
}

.view-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

    .view-more:hover {
        text-decoration: underline;
    }

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.video-card {
    padding: 10px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

    .video-card:hover {
        transform: translateY(-2px);
    }

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

    .video-thumbnail img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(0, 0, 0, 0.85);
    }

    .play-button svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        margin-left: 2px;
    }

.video-info {
    padding: 10px 0px 0;
}

.video-title {
    font-size: 16px;
    font-weight: 700;
    color: #111 !important;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

    .video-meta span:first-child {
        font-weight: 700;
        color: #111;
    }

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .section-title {
        font-size: 20px;
    }
}
