.places-single{
padding: 20px 40px;
width: 100%;
}


.places-header h1{

    font-size:48px;
    line-height:1.1;

}


.places-categories{

    margin:20px 0;

}


.places-categories span{

    display:inline-block;
    background:#edf2f7;
    padding:8px 15px;
    border-radius:30px;
    margin-right:8px;

}



.places-image img{

    width:100%;
    border-radius:25px;

}



.places-content{

    font-size:18px;
    line-height:1.7;
    margin-top:40px;

}



.places-info{

    background:#f7f8fa;
    padding:35px;
    border-radius:25px;
    margin-top:40px;

}



.place-row{

    display:flex;
    padding:15px 0;
    border-bottom:1px solid #ddd;

}


.place-row strong{

    width:220px;

}



.places-map{

    margin-top:40px;

}



.places-related{

    margin-top:60px;

}



.places-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.place-card{

    border-radius:20px;
    overflow:hidden;
    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.place-card img{

    width:100%;

}



@media(max-width:768px){


.places-header h1{
    font-size:32px;
}


.place-row{
    display:block;
}


.place-row strong{
    display:block;
    width:auto;
}


.places-grid{
    grid-template-columns:1fr;
}


}