/* PAGE PIZZERIAS */

.stores{

padding:150px 5% 80px;

background:#050505;
}

.store-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

max-width:1400px;

margin:auto;
}

.store-card{

background:#111;

border:1px solid #222;

border-radius:20px;

overflow:hidden;

transition:.3s;
}

.store-card:hover{

transform:translateY(-5px);

border-color:#E53935;
}

.store-card img{

width:100%;

height:260px;

object-fit:cover;
}

.store-content{

padding:25px;

text-align:center;
}

.store-content h3{

font-size:28px;

margin-bottom:15px;
}

.store-content p{

color:#bbb;

line-height:1.6;

margin-bottom:25px;
}

@media(max-width:900px){

.store-grid{

grid-template-columns:1fr;
}

}

.stores-title{
text-align:center;
font-size:72px;
font-weight:900;
margin-bottom:15px;
}

.stores-subtitle{
text-align:center;
font-size:24px;
color:#bbb;
margin-bottom:60px;
}