.featured-spaces{
display:flex;
justify-content:center;
align-items:center;
gap:70px;
padding:80px 20px;
}

.featured-left{
max-width:420px;
}

.featured-left h2{
font-family:'Italiana',serif;
font-size:35px;
font-weight:600;	
line-height:43px;
color:#111;
margin-bottom:20px;
}

.section-desc{
font-size:16px;
	font-family:elms san;
line-height:1.8;
color:#555;
margin-bottom:35px;
}

.property-card{
background:#f3e6ca;
padding:35px;
border-radius:28px;
transition:.4s ease;
}

.info-block{
margin-bottom:22px;
}

.info-block h5{
font-size:18px;
margin-bottom:6px;
font-weight:700;
color:#111;
}

.info-block p{
font-size:15px;
line-height:1.7;
color:#444;
}

.explore-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:14px 28px;
background:#d5a137;
color:#111;
border-radius:40px;
text-decoration:none;
font-weight:600;
margin-top:10px;
}

.featured-right{
position:relative;
}

.featured-right img{
width:600px;
border-radius:35px;
transition:.5s ease;
display:block;
}

.slider-nav{
display:flex;
justify-content:flex-end;
gap:12px;
margin-top:25px;
}

.slider-nav button{
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#f3e6ca;
cursor:pointer;
font-size:18px;
transition:.3s ease;
}

.slider-nav button:hover{
background:#d5a137;
}

@media(max-width:1024px){

.featured-spaces{
flex-direction:column;
}

.featured-right img{
width:100%;
max-width:600px;
}

}