- /*
 Theme Name:   WpResidence child theme
 Theme URI:    https://themeforest.net/item/wp-residence-real-estate-wordpress-theme/7896392
 Description:  WpResidence child theme
 Author:       WpEstate
 Author URI:   http://wpestate.org
 Template:     wpresidence
 Version:      5.1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/


/* Estilos para alinear los dos agentes horizontalmente */
.property_location {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.property_agent_wrapper {
    flex: 0 0 auto;
    width: 48%; /* Ajusta el ancho de cada agente */
    margin-right: 2%; /* Espacio entre los dos agentes */
}

/* En pantallas más pequeñas, se muestran uno debajo del otro */
@media (max-width: 768px) {
    .property_agent_wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px; /* Espacio entre los agentes en móviles */
    }
}