.gallery {
    column-count: 2;
    column-gap: 1rem;
    transition: 0.3s;
}

.gallery__link:hover .gallery__caption {
    opacity: 1;
}

.gallery__thumb {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 16px;
}

.gallery__image:hover {
    transform: scale(1.1);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 15px 15px;
    width: 100%;
    font-size: 1.125rem;
    color: white;
    font-weight: bold;
    opacity: 0;
    background: linear-gradient(0deg, #0077FF 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
    text-align: left;
}

.gallery__caption-sp {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 15px 15px;
    width: 100%;
    font-size: 1.125rem;
    color: white;
    font-weight: bold;
    background: linear-gradient(0deg, #0077FF 0%, rgba(255, 255, 255, 0) 100%);
    text-align: left;
}

.gallery-pagination .current {
    background: #0077ff;
    padding: 5px 13px 5px 13px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
}

.gallery-pagination a {
    background: #a9cb37;
    padding: 5px 13px 5px 13px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
}

.gallery-pagination {
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media screen and (max-width: 576px) {
    .gallery {
        column-count: 1;
    }
}
