/* ═══════════════════════════════════════════════════════════════
   COASTAL GALLERY STRIP WIDGET
   ═══════════════════════════════════════════════════════════════ */

.elementor-widget-coastal_gallery_strip .coastal-gallery-strip {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 3px;
    height: 380px;
}

.elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item {
    overflow: hidden;
    position: relative !important;
}

.elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: brightness(0.90);
}

.elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip {
        grid-template-columns: 1fr;
    }

    .elementor-widget-coastal_gallery_strip .coastal-gallery-strip__item {
        height: 200px;
    }
}
