/*
Theme Name: Hello Elementor Child
Description: Version child del tema "Hello Elementor"
Author: Antaal Life
Author URI: www.antaal-life.com
Author Email: info@antaal-life.com
Version: 1.0.0
Text Domain: hello-elementor-child
Template: hello-elementor
*/
/*
Add your custom styles here
*/
html,
body {
  overflow-x: hidden;
  overflow-y: auto !important;
}

/*
 * FORZAMOS el truncado del título con alta especificidad.
 * Aplicamos al contenido y a la envoltura del campo dinámico.
 */
.jet-listing-dynamic-field,
.jet-listing-dynamic-field__content {
    /* Claves del truncado */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    
    /* Aseguramos que el elemento se comporte como un bloque y respete su ancho */
    display: block !important; 
    
    /* Si el elemento es un enlace, es útil darle un ancho total */
    width: 100% !important; 
    
    /* La propiedad min-width puede causar desbordamiento en Flexbox. Lo neutralizamos. */
    min-width: 0 !important;
}

/* Nota: Si el título es un enlace <a> dentro del div */
.jet-listing-dynamic-field__content a {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important; 
}
