/* Photo Gallery Slider Frontend Styles */
.photo-gallery-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

/* WordPress Block Theme Integration */
.photo-gallery-slider.alignwide {
    max-width: var(--wp--style--global--wide-size, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.photo-gallery-slider.alignfull {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.photo-gallery-slider.has-background {
    padding: var(--wp--preset--spacing--40, 1.5rem);
}

.photo-gallery-slider.has-global-padding {
    padding-left: var(--wp--style--root--padding-left, 1.5rem);
    padding-right: var(--wp--style--root--padding-right, 1.5rem);
}

.photo-gallery-slider.is-layout-constrained {
    max-width: var(--wp--style--global--content-size, 620px);
}

/* Match wp-block-columns styling */
.photo-gallery-slider.wp-block-columns-child {
    flex-basis: 0;
    flex-grow: 1;
}

.photo-gallery-slider.wp-block-columns-child:not(:last-child) {
    margin-right: var(--wp--style--block-gap, 2em);
}

/* Static Cover Image Styles */
.gallery-cover {
    position: relative;
    width: 100%;
    /* Flexible height - adjust these values to match your content-017 sizing */
    height: 400px;
    /* Fixed height - you can adjust this */
    /* Alternative: use aspect ratio */
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-cover img:hover {
    transform: scale(1.05);
}

/* Legacy support for existing structure */
.pgs-cover-container {
    position: relative;
    width: 100%;
    /* Flexible height - adjust these values to match your content-017 sizing */
    height: 400px;
    /* Fixed height - you can adjust this */
    /* Alternative: use aspect ratio */
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
}

/* Alternative sizing options - uncomment the one that matches your content-017 */
/* Option 1: Match content-017 class (add your specific height) */
/*
.photo-gallery-slider.content-017-size .pgs-cover-container {
    height: 300px; 
}
*/

/* Option 2: Flexible aspect ratio approach */
/*
.photo-gallery-slider.aspect-ratio .pgs-cover-container {
    height: 0;
    padding-bottom: 56.25%; // 16:9 ratio
    // padding-bottom: 75%; // 4:3 ratio  
    // padding-bottom: 66.67%; // 3:2 ratio
}
*/

.pgs-cover-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pgs-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pgs-cover-wrapper img:hover {
    transform: scale(1.02);
}

/* Gallery indicator */
.pgs-gallery-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* Legacy slider container styles for backward compatibility */

.pgs-slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    /* 16:9 aspect ratio */
    overflow: hidden;
}

.pgs-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pgs-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Responsive cover image sizing */
@media (max-width: 768px) {
    .pgs-cover-container {
        height: 250px;
        /* Smaller height on mobile */
    }
}

@media (max-width: 480px) {
    .pgs-cover-container {
        height: 200px;
        /* Even smaller on very small screens */
    }

    .pgs-gallery-indicator {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Legacy slider container styles for backward compatibility */
.pgs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pgs-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.pgs-nav:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.pgs-nav-prev {
    left: 15px;
}

.pgs-nav-next {
    right: 15px;
}

.pgs-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pgs-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1);
}

/* Dots Indicator */
.pgs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
    background: #f9f9f9;
}

.pgs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pgs-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.pgs-dot.active {
    background: #333;
    transform: scale(1.3);
}

/* Loading State */
.pgs-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #666;
    font-size: 16px;
}

.pgs-loading::after {
    content: "";
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: pgs-spin 1s linear infinite;
}

@keyframes pgs-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error State */
.pgs-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #d63638;
    font-size: 16px;
    background: #fff2f2;
    border: 1px solid #f5c2c7;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pgs-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .pgs-nav-prev {
        left: 10px;
    }

    .pgs-nav-next {
        right: 10px;
    }

    .pgs-dots {
        padding: 15px;
        gap: 8px;
    }

    .pgs-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .pgs-slider-container {
        padding-bottom: 75%;
        /* More square aspect ratio on mobile */
    }

    .pgs-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .pgs-nav-prev {
        left: 5px;
    }

    .pgs-nav-next {
        right: 5px;
    }

    .pgs-dots {
        padding: 10px;
        gap: 6px;
    }

    .pgs-dot {
        width: 8px;
        height: 8px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .pgs-slider-wrapper {
        transition: none;
    }

    .pgs-nav {
        transition: none;
    }

    .pgs-dot {
        transition: none;
    }

    @keyframes pgs-spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .pgs-nav {
        background: #000;
        border: 2px solid #fff;
    }

    .pgs-dot {
        border: 1px solid #000;
    }

    .pgs-dot.active {
        background: #000;
        border: 2px solid #fff;
    }
}

/* Modal Popup Styles */
.pgs-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pgs-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.pgs-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.pgs-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.pgs-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pgs-modal-close:hover,
.pgs-modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.pgs-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
}

.pgs-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.pgs-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.pgs-modal-nav-prev {
    left: 30px;
}

.pgs-modal-nav-next {
    right: 30px;
}

.pgs-modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .pgs-modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .pgs-modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 40px;
        height: 40px;
    }

    .pgs-modal-nav {
        font-size: 20px;
        padding: 15px 12px;
        min-width: 50px;
        min-height: 50px;
    }

    .pgs-modal-nav-prev {
        left: 15px;
    }

    .pgs-modal-nav-next {
        right: 15px;
    }

    .pgs-modal-counter {
        bottom: 20px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Touch support for modal */
.pgs-modal-content {
    touch-action: manipulation;
}

/* Loading state for modal */
.pgs-modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    z-index: 10001;
}

/* Keyboard navigation indicator */
.pgs-modal:focus-within .pgs-modal-nav {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* =========================================================
   Pocono Palms Theme Override
   Dark / jungle-chic / cinematic luxury
   Append below existing plugin CSS
========================================================= */

.photo-gallery-slider {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, #121512 0%, #171b17 100%);
    border: 1px solid rgba(214, 201, 168, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transform: none;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.photo-gallery-slider:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 201, 168, 0.28);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Cover / main image area */
.gallery-cover,
.pgs-cover-container {
    height: clamp(320px, 42vw, 520px);
    background: #121512;
}

.gallery-cover::after,
.pgs-cover-container::after,
.pgs-slider-container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(8, 10, 8, 0.08) 0%,
            rgba(8, 10, 8, 0.14) 35%,
            rgba(8, 10, 8, 0.36) 72%,
            rgba(8, 10, 8, 0.52) 100%);
}

/* Slightly more cinematic crop and movement */
.gallery-cover img,
.pgs-cover-wrapper img,
.pgs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.005);
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: saturate(0.9) contrast(1.05) brightness(0.88);
}

.photo-gallery-slider:hover .gallery-cover img,
.photo-gallery-slider:hover .pgs-cover-wrapper img,
.photo-gallery-slider:hover .pgs-slide img {
    transform: scale(1.03);
    filter: saturate(0.98) contrast(1.04) brightness(0.96);
}

.pgs-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(7, 9, 7, 0.08) 0%,
            rgba(7, 9, 7, 0.18) 34%,
            rgba(7, 9, 7, 0.42) 70%,
            rgba(7, 9, 7, 0.68) 100%);
}

.pgs-cover-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.pgs-cover-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 28px 30px;
    pointer-events: none;
}

.pgs-cover-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.16);
    background: rgba(18, 21, 18, 0.4);
    color: rgba(244, 239, 230, 0.82);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pgs-cover-title {
    margin: 0;
    max-width: 14ch;
    color: #f4efe6;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: 0.01em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.pgs-cover-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.24);
    background: rgba(18, 21, 18, 0.55);
    color: #f4efe6;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Gallery count indicator */
.pgs-gallery-indicator {
    right: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 21, 18, 0.68);
    border: 1px solid rgba(214, 201, 168, 0.18);
    color: rgba(244, 239, 230, 0.92);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Legacy slider shell */
.pgs-slider-container {
    background: #121512;
    padding-bottom: 62%;
}

.pgs-slider-wrapper {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Arrows */
.pgs-nav {
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.18);
    background: rgba(18, 21, 18, 0.55);
    color: #f4efe6;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.pgs-nav:hover {
    background: rgba(28, 33, 28, 0.85);
    border-color: rgba(214, 201, 168, 0.35);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.pgs-nav:focus {
    outline: 2px solid rgba(214, 201, 168, 0.7);
    outline-offset: 3px;
}

.pgs-nav-prev {
    left: 18px;
}

.pgs-nav-next {
    right: 18px;
}

.pgs-nav:disabled,
.pgs-nav:disabled:hover {
    opacity: 0.28;
    background: rgba(18, 21, 18, 0.42);
    border-color: rgba(214, 201, 168, 0.1);
    transform: translateY(-50%);
    box-shadow: none;
}

/* Dots / pagination */
.pgs-dots {
    padding: 18px 20px 22px;
    gap: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        #121512;
    border-top: 1px solid rgba(214, 201, 168, 0.08);
}

.pgs-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(244, 239, 230, 0.2);
    transform: none;
    transition: all 0.25s ease;
}

.pgs-dot:hover {
    background: rgba(214, 201, 168, 0.5);
    transform: none;
}

.pgs-dot.active {
    width: 22px;
    background: rgba(214, 201, 168, 0.9);
    transform: none;
}

/* Loading / empty states */
.pgs-loading {
    height: 320px;
    color: rgba(244, 239, 230, 0.74);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.96rem;
    background: linear-gradient(180deg, #121512 0%, #171b17 100%);
}

.pgs-loading::after {
    border: 2px solid rgba(214, 201, 168, 0.2);
    border-top: 2px solid rgba(214, 201, 168, 0.85);
}

.pgs-error {
    height: 320px;
    color: #f1d4d4;
    background: linear-gradient(180deg, #241617 0%, #1d1415 100%);
    border: 1px solid rgba(209, 120, 120, 0.24);
    border-radius: 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Modal */
.pgs-modal {
    background: rgba(7, 9, 7, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pgs-modal-content {
    max-width: 92vw;
    max-height: 88vh;
}

.pgs-modal-image {
    border-radius: 18px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(214, 201, 168, 0.08);
}

.pgs-modal-close,
.pgs-modal-nav,
.pgs-modal-counter {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pgs-modal-close {
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.18);
    background: rgba(18, 21, 18, 0.52);
    color: #f4efe6;
    font-size: 28px;
}

.pgs-modal-close:hover,
.pgs-modal-close:focus {
    background: rgba(28, 33, 28, 0.8);
    border-color: rgba(214, 201, 168, 0.34);
    transform: scale(1.04);
}

.pgs-modal-nav {
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.18);
    background: rgba(18, 21, 18, 0.52);
    color: #f4efe6;
    font-size: 20px;
}

.pgs-modal-nav:hover {
    background: rgba(28, 33, 28, 0.8);
    border-color: rgba(214, 201, 168, 0.34);
    transform: translateY(-50%) scale(1.04);
}

.pgs-modal-counter {
    bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(214, 201, 168, 0.18);
    background: rgba(18, 21, 18, 0.56);
    color: rgba(244, 239, 230, 0.92);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {

    .gallery-cover,
    .pgs-cover-container {
        height: 280px;
    }

    .pgs-cover-content {
        padding: 22px 22px 24px;
        gap: 8px;
    }

    .pgs-cover-title {
        max-width: 16ch;
        font-size: clamp(1.7rem, 8vw, 2.6rem);
    }

    .pgs-slider-container {
        padding-bottom: 72%;
    }

    .pgs-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pgs-nav-prev {
        left: 12px;
    }

    .pgs-nav-next {
        right: 12px;
    }

    .pgs-dots {
        padding: 14px 16px 18px;
    }

    .pgs-modal-close {
        top: 12px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .pgs-modal-nav {
        min-width: 44px;
        min-height: 44px;
        font-size: 18px;
    }

    .pgs-modal-nav-prev {
        left: 12px;
    }

    .pgs-modal-nav-next {
        right: 12px;
    }
}

@media (max-width: 640px) {

    .gallery-cover,
    .pgs-cover-container {
        height: 230px;
    }

    .pgs-cover-content {
        padding: 18px 18px 20px;
    }

    .pgs-cover-eyebrow {
        padding: 5px 9px;
        font-size: 0.6rem;
    }

    .pgs-cover-cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.68rem;
    }

    .pgs-gallery-indicator {
        right: 12px;
        bottom: 12px;
        padding: 7px 12px;
        font-size: 0.68rem;
    }

    .pgs-dot {
        width: 7px;
        height: 7px;
    }

    .pgs-dot.active {
        width: 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .photo-gallery-slider,
    .gallery-cover img,
    .pgs-cover-wrapper img,
    .pgs-slide img,
    .pgs-slider-wrapper,
    .pgs-nav,
    .pgs-dot,
    .pgs-modal-close,
    .pgs-modal-nav {
        transition: none !important;
        animation: none !important;
    }
}
