.gallery-footer {
    padding: 0;
    margin: 0;
}

.gallery-footer ul {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-footer li {
    flex: 0 1 calc((100% - (10px * 3 - 10px) ) / 3);
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
}

.gallery-footer .gallery-footer-item-inner {
    padding: 66.67% 0 0;
}

.gallery-footer .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
    overflow: hidden;
}

.gallery-footer li:hover .image-wrapper {
    transform: scale(1.1);
}

.gallery-footer img.gallery-footer-image {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
}

.gallery-footer .hover-icon-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.gallery-footer li:hover .hover-icon-wrapper {
    opacity: 1;
}

.gallery-footer .hover-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wp--preset--color--secondary, #222222);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.gallery-footer li:hover .hover-overlay {
    opacity: 0.3;
}

.gallery-footer a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}