/**
 * Post Gallery Styles
 */

.tmh-post-gallery {
	margin: var(--wp--preset--spacing--50) 0;
}

.tmh-post-gallery .gallery-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	line-height: 0;
}

.tmh-post-gallery .gallery-item {
	margin: 0;
	padding: 0;
	max-width: 100%;
	line-height: 0;
}

.tmh-post-gallery .gallery-item a {
	display: block;
	line-height: 0;
}

.tmh-post-gallery .gallery-item img {
	width: auto;
	height: auto;
	max-width: 400px;
	display: block;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	transition: opacity 0.3s ease;
}

.tmh-post-gallery .gallery-item:hover img {
	opacity: 0.9;
}

/* Mobile: imágenes adaptadas al ancho de pantalla */
@media (max-width: 768px) {
	.tmh-post-gallery .gallery-item img {
		max-width: 100%;
		width: 100%;
	}
}
