/**
 * Ajustes del tema con Bootstrap (tipografía y galerías).
 *
 * @package CreadiNegocio
 */

/* Mantener fuentes del tema por encima del reboot de Bootstrap */
body {
	font-family: var(--font-primary, "Poppins", system-ui, sans-serif);
	font-weight: var(--font-normal, 400);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-heading, "Montserrat", sans-serif);
	color: var(--color-secondary, #0f172a);
}

/* Enlaces: paleta del tema */
a {
	color: var(--color-primary, #871f78);
}

a:hover {
	color: var(--color-primary-dark, #6b1860);
}

/* Galería bloque: imágenes responsivas dentro de columnas */
.wp-block-gallery.has-nested-images figure.wp-block-image.col img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius-md, 0.8rem);
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
	margin-bottom: 0;
}

/* Shortcode / bloque clásico: ítems alineados */
.gallery .gallery-item.col {
	text-align: center;
}

.gallery .gallery-item img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md, 0.8rem);
}
