﻿/* ==============================================
   GalleryView – Slideshow Instruction messages
   ============================================== */

.page-galleryview .slideshow-intro {
    text-align: center;
    margin: 20px auto 30px auto;
    max-width: 800px; /* keeps the text nicely contained */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding-bottom: 20px;
}

.page-galleryview .slideshow-welcome {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-muted);
    text-align: center;
}

.page-galleryview .slideshow-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

/* ==============================================
   GalleryView – Gallery Image List/View
   ============================================== */
.page-galleryview .gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.page-galleryview .gallery-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #000;
    border-radius: 6px;
}

.page-galleryview .gallery-images .photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .page-galleryview .gallery-images .photo-wrap:hover {
        box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }

        .page-galleryview .gallery-images .photo-wrap:hover img {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

.page-galleryview .photo-caption {
    margin-top: 6px;
    font-size: 14px;
    color: #ccc;
    text-align: center;
}

