/* Guide / itinerary CMS photo strip — CLS: match preview 960×720 (4:3) */
.list-search-info-gallery.cms-page-gallery.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.list-search-info-gallery .cms-page-gallery__cell {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #e8eef4;
    aspect-ratio: 4 / 3;
    max-height: 360px;
}

.list-search-info-gallery .cms-page-gallery__img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

/* Beat .list-search-info img { height:auto } from guide/itineraries inline CSS for CKEditor */
.list-search-info-gallery .cms-page-gallery__cell .cms-page-gallery__img {
    height: 100% !important;
    max-width: none !important;
}

/* Mobile: vertical stack (1–2 images) or grid 1+2 (three images) */
@media (max-width: 767.98px) {
    .list-search-info-gallery.cms-page-gallery.row {
        overflow-x: visible;
        padding: 0;
    }

    .list-search-info-gallery.cms-page-gallery.row:not(.cms-page-gallery--layout-1plus2) {
        display: block;
    }

    .list-search-info-gallery.cms-page-gallery.row:not(.cms-page-gallery--layout-1plus2) > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        flex: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 14px;
        display: block;
    }

    .list-search-info-gallery.cms-page-gallery--layout-1plus2.row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .list-search-info-gallery.cms-page-gallery--layout-1plus2.row > [class*="col-"] {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .list-search-info-gallery.cms-page-gallery--layout-1plus2.row > [class*="col-"]:nth-child(1) {
        grid-column: 1 / -1;
    }

    .list-search-info-gallery.cms-page-gallery--layout-1plus2 .cms-page-gallery__cell {
        max-height: min(72vw, 320px);
    }

    .list-search-info-gallery.cms-page-gallery--layout-1plus2.row > [class*="col-"]:nth-child(n + 2) .cms-page-gallery__cell {
        max-height: min(42vw, 200px);
    }

    .list-search-info-gallery:not(.cms-page-gallery--layout-1plus2) .cms-page-gallery__cell {
        max-height: min(72vw, 320px);
    }
}

@media (min-width: 768px) {
    .list-search-info-gallery.cms-page-gallery--layout-1plus2.row {
        display: flex;
        flex-wrap: wrap;
    }

    .list-search-info-gallery.cms-page-gallery.row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
}
