/*
 Theme Name:   Divi Child
 Theme URI:    https://example.com/divi-child
 Description:  Child theme for Divi. Safe place to add custom CSS, PHP, and templates.
 Author:       Your Name
 Author URI:   https://example.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  divi-child
*/

/* Put your custom CSS below this line */

/* Aumentar separación horizontal entre enlaces del menú */
.et_pb_menu ul li {
  margin-right: 25px !important; /* ajusta el valor a tu gusto */
}

/* Evitar que el último enlace quede con margen extra */
.et_pb_menu ul li:last-child {
  margin-right: 0 !important;
}





/* TEST: muestra un borde rojo si el selector existe 
#id_menu a {
  outline: 3px solid red !important;
}
*/


.mi-galeria-imagenes .et_pb_image_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* GAP entre las imágenes */
}

.mi-galeria-imagenes .et_pb_image_grid .et_pb_image {
    flex: 1 1 calc(25% - 10px); /* 4 columnas con un gap */
}

@media (max-width: 980px) {
    .mi-galeria-imagenes .et_pb_image_grid .et_pb_image {
        flex: 1 1 calc(50% - 10px); /* 2 columnas con un gap */
    }
}



