Bedrooms
2
Bathrooms
1
Price
1350
@property-card {
all: unset;
}
.property-card {
max-width: 650px;
margin: 20px auto;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
padding: 20px;
font-family: “Poppins”, sans-serif;
color: #222;
}
.property-header {
border-bottom: 2px solid #0073e6;
margin-bottom: 15px;
padding-bottom: 10px;
}
.property-address {
font-size: 18px;
font-weight: 600;
color: #0073e6;
margin: 0;
text-align: center;
}
.property-details {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
}
.detail {
flex: 1 1 30%;
background: #f8f9fa;
border-radius: 8px;
text-align: center;
padding: 12px 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.detail:hover {
transform: translateY(-3px);
box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.detail i {
font-size: 20px;
color: #0073e6;
margin-bottom: 6px;
display: block;
}
.detail .label {
display: block;
font-size: 13px;
color: #777;
}
.detail .value {
display: block;
font-size: 16px;
font-weight: 600;
color: #333;
}
@media (max-width: 600px) {
.property-details {
flex-direction: column;
}
.detail {
width: 100%;
}
}