/* EZHONG Video Gallery Styles */



.page-header {
    text-align: center;
    padding: 40px 0;

    margin-bottom: 50px;
}

.page-header h1 {
    color: #0056b3;
    font-weight: bold;
    font-size: 3rem;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.video-section {
    margin-bottom: 80px;
}

.section-title {
    color: #11438F;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-link {
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.more-link:hover {
    color: #0056b3;
}

.video-row {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-item img {
    width: 600px;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-item a img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-item a:hover img {
    transform: scale(1.05);
}

.carousel-video {
    width: 600px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.video-description {
    padding-left: 30px;
}

.video-description h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.video-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.view-more-btn {
    background-color: #0056b3;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-indicators button {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .video-carousel {
        height: 250px;
        margin-bottom: 30px;
    }

    .video-description {
        padding-left: 0;
    }
}
