.maps-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.map-item {
    flex: 1;
    position: relative;
}

.map-container {
    aspect-ratio: 1;
    position: relative;
    overflow: visible;
    width: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, width 0.3s ease, left 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #1abc9c;
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
}

/* Left map (Pays de Falaise) */
.map-item:first-child {
    z-index: 1;
}
.map-item:first-child:hover {
    z-index: 3;
}
.map-item:first-child .map-container {
    position: relative;
}
.map-item:first-child .map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 190%;
    height: 100%;
    z-index: 1;
}
.map-item:first-child .map-container:hover .map-image {
    width: 190%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Right map (Caen la Mer) */
.map-item:last-child {
    z-index: 1;
}
.map-item:last-child:hover {
    z-index: 2;
}
.map-item:last-child .map-container:hover .map-image {
    width: 190%;
    left: -90%;
    transform: translateY(-50%);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}