.video-gallery-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    direction: rtl;
}

.video-gallery-section .section-title {
    text-align: center;
    font-size: 36px;
    color: #003087;
    margin-bottom: 20px;
    font-weight: bold;
}

.video-gallery-section .title-wave {
    background: url('path-to-your-wave-image.png') no-repeat center;
    height: 20px;
    margin-bottom: 40px;
}

.video-gallery-section .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-gallery-section .video-item {
    width: 100%;
}

.video-gallery-section .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-gallery-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-gallery-section .video-title {
	font-weight: bold;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .video-gallery-section .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .video-gallery-section .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-gallery-section .section-title {
        font-size: 28px;
    }
}

.video-item.hidden {
    display: none;
}

.video-load-more-container {
    text-align: center;
    margin-top: 30px;
}

.video-load-more {
	background-color: #10517b;
    color: #fff;
    padding: 20px 38px;
    cursor: pointer;
    font-size: 16px;
    width: fit-content;
    margin: 0 auto;
    display: block;
    border: none;
    text-align: center;
	font-family: "almoni-dl", "arial";
}