.gz-resultados-grid{
    max-width:1200px;
    margin:auto;
}

.gz-card{
    display:flex;
    gap:24px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.gz-card:hover{
    transform:translateY(-3px);
}

.gz-card-img{
    width:320px;
    flex-shrink:0;
}

.gz-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gz-card-content{
    padding:24px;
    flex:1;
}

.gz-card-content h2{
    margin:0 0 10px;
    font-size:24px;
}

.gz-card-content p{
    color:#555;
    line-height:1.6;
}

.gz-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 18px;
    background:#0066ff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}

.gz-btn:hover{
    opacity:.9;
}

/* =========================
   LAYOUT RESULTADOS + MAPA
========================= */

.gz-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 420px;
    gap:24px;
    max-width:1600px;
    margin:auto;
}

.gz-mapa-container{
    position:sticky;
    top:20px;
    height:calc(100vh - 40px);
}

#gz-mapa{
    width:100%;
    height:100%;
    background:#f5f5f5;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:600;
}

@media(max-width:1024px){

    .gz-layout{
        grid-template-columns:1fr;
    }

    .gz-mapa-container{
        position:relative;
        height:500px;
        top:auto;
    }

}

@media(max-width:768px){

    .gz-card{
        flex-direction:column;
    }

    .gz-card-img{
        width:100%;
    }

}
