/*
Theme Name: Twenty Ten Hijo
Theme URI: https://midominio.es/
Description: Tema hijo de Twenty Ten
Author: Tu nombre
Template: twentyten
Version: 1.0
*/

#wrapper {
    background-color: #ddd3c7 !important;
}
#lightboxImage {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: calc(100vw - 40px) !important;
    max-height: calc(100vh - 100px) !important;
    object-fit: contain !important;
}
/* Galerías de WordPress */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
    margin: 5px 0;
}
.gallery br {
    display: none !important;
}

.gallery::after {
    display: none !important;
}
/* Cada miniatura */
.gallery .gallery-item {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}

/* Marco de la imagen */
.gallery .gallery-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    box-sizing: border-box;
    border: 0 !important;
    padding: 0; !important;
    background: transparent;
}

/* ? */
.gallery .gallery-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Imagen */
.gallery .gallery-icon img {
    display: block;
		box-sizing: border-box;
    width: 100% !important;
    height: 100% !important;
		padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
	  object-fit: contain;
}
@media (max-width: 700px) {
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery .gallery-icon {
        height: 140px;
    }
}

@media (max-width: 420px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
