.gallery .intro {
    padding: clamp(20px, 4vw, 56px) 0;
}

.gallery .intro h1 {
        font-size: clamp(20px, 4vw, 40px);
        line-height: clamp(28px, 4vw, 38px);
}

.gallery_grid {
    display: grid;
    grid-template-columns: 1fr repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: clamp(15px, 2vw, 30px);
    row-gap:clamp(25px, 2vw, 45px);
    margin-bottom: clamp(20px, 4vw, 56px); 
}

.gallery_grid > a {
    display: block;
}

.gallery_overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.5;
    z-index: 2;
}
.gallery_details .gallery_gridm .gallery_overlay {
    display: block;
}
.gallery_details .gallery_grid {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    column-gap: clamp(15px, 2vw, 30px);
    page-break-inside: avoid;
    break-inside: avoid-column;
    height: auto;
    margin-bottom: clamp(20px, 4vw, 56px);
    display: block;
}
.gallery_details .gallery_grid>a {
    width: 100%;
    display: block;
    margin-bottom: clamp(25px, 2vw, 45px);
    break-inside: avoid-column;
    position: relative;
}
.gallery_details .gallery_grid>a:after {
    content: " ";
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    height: 115px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 0;
    display: none;
}
.gallery_details .gallery_grid>a:before {
    content: " ";
    position: absolute;
    top:15px;
    left: 15px;
    height: 33px;
    width: 33px;
    background: url(images/plus_icon.svg) no-repeat center 100%;
    z-index: 1;
    display: none;
} 
.gallery_details .gallery_grid.jsGrid .grid-item {
    width: 31.5%;
}
.gallery_details .gallery_grid.jsGrid .grid-gutter {
    width: clamp(25px, 2vw, 45px);
}
.gallery_details .gallery_grid>a:hover::after,
.gallery_details .gallery_grid>a:hover::before {
    display: block;
}
.gallery_grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: clamp(15px, 2vw, 30px);
}
.gallery_details .gallery_grid img {
    margin-bottom: 0;
    vertical-align: middle;
}
.gallery_grid .gallery_item_alt img  {
    height: 100%;
}
.gallery_grid h3 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: clamp(18px, 2vw, 24px);
}
.gallery_grid span {
    font-style: italic;
}
.gallery_grid .gallery_item_alt {
    position: relative;
}
.gallery_grid .gallery_item_alt:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 0;
    height: 125px;
}
.gallery_grid .gallery_item_alt h3{
    position: absolute;
    bottom: 34px;
    left: 24px;
    right: 24px;
    z-index: 1;
}
.gallery_grid .gallery_item_alt img {
    margin: 0;
}
.gallery_details .gallery_grid span {
    font-style: normal;
}
@media (max-width: 930px) {
    .gallery_details .gallery_grid.jsGrid .grid-item {
        width: 31.3%;
    }
}
@media (max-width: 860px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }
    .gallery_details .gallery_grid {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
    .gallery_details .gallery_grid.jsGrid .grid-item {
        width: 47.8%;
    }
}
@media (max-width: 600px) {
    .gallery_grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .gallery_details .gallery_grid {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .gallery_details .gallery_grid.jsGrid .grid-item {
        width: 100%;
    }
}