.ft-gallery {
    margin: 0 auto;
}

.ft-gallery-sizer,
.ft-gallery-item {
    width: 23.333%;
    margin-bottom: 15px;
}

.ft-gallery-item {
    box-sizing: border-box;
}

.ft-gallery-item img {
    width: 100%;
    height: auto;
}

.ft-gallery-image-secondary {
    display: none;
}

.ft-load-more {
    text-align: center;
    margin: 20px 0;
}

.ft-load-more button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.ft-load-more button:hover {
    background-color: #005177;
}

.ft-gallery-image-container a {
    display: block;
    text-decoration: none;
}


.ft-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.ft-gallery-image-primary img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: auto;
}

.ft-gallery-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ft-gallery-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.ft-gallery-item:hover .ft-gallery-image-secondary {
    opacity: 1;
}



@media (max-width: 768px) {
    .ft-gallery-sizer, .ft-gallery-item {
        width: 47.8%;
        margin-bottom: 15px;
    }
}