.pg-grid-container-452ef0f6 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Creative Layout */
.pg-grid-row-452ef0f6 {
    display: flex;
    gap: 15px;
    width: 100%;
    height: 600px; 
}

.pg-item-large-452ef0f6 {
    flex: 1;
    height: 100%;
}

.pg-small-column-452ef0f6 {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

.pg-item-small-452ef0f6 {
    width: 100%;
    height: 100%;
}

/* Standard Layout */
.pg-standard-grid-452ef0f6 {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr); /* default, overridden by Elementor control */
}

.pg-standard-item-452ef0f6 {
    height: 400px; /* default, overridden by Elementor slider */
    width: 100%;
}

/* Shared Item Styles */
.pg-item-452ef0f6 {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.pg-item-452ef0f6::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    transition: background 0.3s ease;
}

.pg-item-452ef0f6:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
}

.pg-location-badge-452ef0f6 {
    position: absolute;
    top: 25px;
    z-index: 3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.pg-content-452ef0f6 {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.pg-cat-452ef0f6 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dcb36d;
    margin-bottom: 8px;
    display: block;
}

.pg-title-452ef0f6 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.pg-item-small-452ef0f6 .pg-title-452ef0f6 {
    font-size: 18px;
}

/* Gallery Popup Styles */
.pg-popup-overlay-452ef0f6 {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pg-popup-content-452ef0f6 {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85%;
    border-radius: 10px;
    padding: 50px 30px 30px;
    overflow-y: auto;
}
.pg-popup-title-452ef0f6 {
    font-size: 28px;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pg-popup-close-452ef0f6 {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.pg-popup-close-452ef0f6:hover {
    opacity: 0.7;
}
.pg-popup-gallery-452ef0f6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.pg-popup-gallery-452ef0f6 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.pg-popup-gallery-452ef0f6 img:hover {
    transform: scale(1.02);
}

/* Image Zoom Overlay Styles */
.pg-zoom-overlay-452ef0f6 {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}
.pg-zoom-image-452ef0f6 {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.pg-zoom-close-452ef0f6 {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pg-grid-row-452ef0f6 {
        flex-direction: column;
        height: auto !important;
    }
    .pg-item-large-452ef0f6 {
        flex: none;
        height: 400px;
    }
    .pg-small-column-452ef0f6 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .pg-item-small-452ef0f6 {
        height: 250px;
    }
    .pg-standard-grid-452ef0f6 {
        grid-template-columns: 1fr;
    }
    .pg-popup-gallery-452ef0f6 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .pg-popup-gallery-452ef0f6 img {
        height: 150px;
    }
}