.same-location-section{

background:#fff;

padding:22px;

margin:25px 0;

border-radius:18px;

box-shadow:0 4px 18px rgba(0,0,0,.08);

}

.same-location-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:18px;

}

.same-location-card{

border:1px solid #eee;

border-radius:12px;

overflow:hidden;

transition:.25s;

background:#fff;

}

.same-location-card:hover{

transform:translateY(-3px);

box-shadow:0 8px 18px rgba(0,0,0,.12);

}

.same-location-card img{

width:100%;

height:180px;

object-fit:cover;

}

.same-location-body{

padding:14px;

}

.same-location-body h3{

font-size:15px;

height:44px;

overflow:hidden;

margin-bottom:8px;

}

.same-location-price{

font-weight:bold;

color:#2563eb;

margin-top:8px;

}

.same-location-card a{

text-decoration:none;

color:#111;

}

@media(max-width:768px){

.same-location-grid{

grid-template-columns:1fr;

}

.same-location-card img{

height:220px;

}

}