/*  */
.gallery-collage-grid {
    display: grid;
    grid-template-areas:
        "large medium1 small1"
        "large medium2 small2";
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 10px;
}
.gallery-item:nth-child(1){
	height:462px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
	height:225px;
    border-radius: 8px;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
	object-position:center;
}
.item-extra{
	display:none;
}

/* Ãreas por Ãndice */
.item-large { grid-area: large; }
.item-medium:nth-child(2) { grid-area: medium1; }
.item-medium:nth-child(3) { grid-area: medium2; }
.item-small.top { grid-area: small1; }
.item-small.bottom { grid-area: small2; }

.overlay-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    color: black;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
}
#elementor-lightbox-slideshow-single-img{
	display:none !important;
}
.verfotos{
    display:none;
}
/* Responsive */
@media (max-width: 768px) {
    .verfotos{
        display:block;
        position:absolute;
        right:15px;
        bottom:15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    }
    
    .gallery-collage-grid {
        grid-template-areas:
            "large";
        grid-template-columns: 1fr;
    }
	  .gallery-collage-grid .gallery-item {
    display: none;
  }

  .gallery-collage-grid .gallery-item:first-child {
    display: block;
  }
 .gallery-item:nth-child(1){
     height:250px;
 }
}