  .nav-list {
    padding-left: 20px;
    margin: 0;
  }

  .nav-list li {
    margin-bottom: 8px;
    list-style-type: disc;
  }

  .nav-list li a {
    text-decoration: none !important;
    color: #333;
    font-size: 16px;
    transition: color 0.2s ease;
  }

  .nav-list li a:hover {
    color: #007bff;
  }
  
  

    .call-to-arms-div {
        padding: 10px;
    }
    
    .call-to-arms-button {
        background-color: #2786b3;
        font-weight: 700;
        padding: 14px 30px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.5rem;
        transition: background-color 0.8s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 8px rgba(40, 167, 69, 0.4);
        user-select: none;
        width: 100%;
        text-align: center;
        color: #ffb300 !important;
        transition: color 0.8s ease;
    }
    
    .call-to-arms-button:hover {
        color: #FFD000 !important;
        background-color: #218838;
        box-shadow: 0 6px 12px rgba(33, 136, 56, 0.6);
    }
    
    .call-to-arms-button:active {
        background-color: #1e7e34;
        box-shadow: 0 2px 4px rgba(30, 126, 52, 0.8);
    }

.listReview {
	color: #ff0000 !important;
    font-size: 2.8rem !important;
}

.blogListImage {
    height: 250px;
    overflow:  hidden;
	margin: 10px 0px 10px 0px;
}

.blog-card-footer {
	margin-top: 10px;
}


p.newsListExcerpt {
	text-decoration: none!important;
}

.listAnchor {
	text-decoration: none!important;	
}

/* ============================================================
   GALLERY STYLES - Photo & Video
   ============================================================ */

/* ── PHOTO GALLERY ── */
.detail-gallery {
    grid-column: 1 / -1;
    margin-top: 2rem;
    border-radius: 12px;
    padding: 2rem;
}

.detail-gallery h3 {
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.galleryGrid a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    aspect-ratio: 1 / 1;
}

.galleryGrid a:hover {
    transform: scale(1.02);
    z-index: 2;
}

.galleryGrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    display: block;
}

/* ── VIDEO GALLERY ── */
.detail-video {
    grid-column: 1 / -1;
    margin-top: 2rem;
    border-radius: 12px;
    padding: 2rem;
}

.detail-video h3 {
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

.video-title {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── RESPONSIVE ── */

/* Tablets and small laptops */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.25rem;
    }
    
    .galleryGrid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.6rem;
    }
    
    .detail-gallery,
    .detail-video {
        padding: 1.5rem;
    }
    
    .detail-gallery h3,
    .detail-video h3 {
        font-size: 1.5rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .galleryGrid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
    }
    
    .galleryGrid img {
        height: 140px;
    }
    
    .detail-gallery,
    .detail-video {
        padding: 1rem;
        margin-top: 1.5rem;
        border-radius: 8px;
    }
    
    .detail-gallery h3,
    .detail-video h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .video-title {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .galleryGrid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.4rem;
    }
    
    .galleryGrid img {
        height: 100px;
    }
    
    .detail-gallery,
    .detail-video {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .detail-gallery h3,
    .detail-video h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
}

/* ── SECTION GALLERIES ── */
.post-section .galleryGrid {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.post-section .detail-gallery,
.post-section .detail-video {
    padding: 1rem;
    margin-top: 1rem;
}

.post-section .detail-gallery h3,
.post-section .detail-video h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/*------- lightbox -------*/

/* Lightbox */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

#lightbox-overlay img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    cursor: default;
    border-radius: 4px;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100001;
    font-family: arial;
    padding: 8px 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#lightbox-close:hover {
    opacity: 1;
}

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    z-index: 100001;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#lightbox-prev {
    left: 20px;
}

#lightbox-next {
    right: 20px;
}

#lightbox-prev:hover,
#lightbox-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

#lightbox-title {
    color: #fff;
    margin-top: 15px;
    font-size: 16px;
    font-family: arial;
    text-align: center;
    max-width: 80%;
}

#lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-size: 14px;
    font-family: arial;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #lightbox-prev,
    #lightbox-next {
        font-size: 22px;
        padding: 10px 12px;
    }
    #lightbox-close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    #lightbox-title {
        font-size: 14px;
    }
}