.photo-grid__trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.photo-grid__trigger:focus-visible {
    outline: 3px solid var(--blue-500);
    outline-offset: -3px;
}

.photo-grid__trigger img { display: block; transition: transform .2s ease; }
.photo-grid__trigger:hover img { transform: scale(1.04); }

.tour-photo-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 18, 45, .82);
}

.tour-photo-modal[hidden] { display: none; }

.tour-photo-modal__dialog {
    position: relative;
    display: grid;
    place-items: center;
    max-width: 92vw;
    max-height: 82vh;
}

.tour-photo-modal__dialog img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(90vw, 1400px) !important;
    max-height: min(78vh, 820px) !important;
    border-radius: 5px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .38);
    object-fit: contain;
}

.tour-photo-modal__close {
    position: absolute;
    z-index: 1;
    top: -12px;
    right: -12px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: #fff;
    color: #072454;
    cursor: pointer;
}

body.tour-photo-modal-open { overflow: hidden; }

@media (max-width: 575.98px) {
    .tour-photo-modal { padding: 16px; }
    .tour-photo-modal__dialog img { max-width: 88vw !important; max-height: 74vh !important; }
    .tour-photo-modal__close { top: -8px; right: -8px; }
}
