/* xl - DESKTOP STYLES */ 
.mls-card {
    display: flex;
    gap: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 15px;
}

.mls-photo {
    width: 320px;
    flex-shrink: 0;
}

.mls-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.mls-details {
    flex: 1;
}

.mls-address {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mls-city {
    margin-bottom: 10px;
}

.mls-price {
	/*
    font-size: 42px;
    font-weight: 500;
	*/
    margin-top: 15px;
    margin-bottom: 10px;
}

.mls-stats {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mls-description {
    line-height: 1.5;
}

.mls-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 15px;
}

@media (max-width: 768px) {

    .mls-card {
        flex-direction: column;
    }

    .mls-photo {
        width: 100%;
    }

    .mls-photo img {
        width: 100%;
        height: auto;
    }

    .mls-details {
        width: 100%;
    }

    .entry-title {
        margin-top: 15px;
    }

}

