/* GALLERY */
.gallery__grid-box {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 4px;
}

.gallery__album-title {
    text-align: center;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color);
}

.gallery__grid-content:first-child {
    grid-column: 1/6;
    grid-row: 1/4;
}

.gallery__grid-content {
    grid-column: span 2;
}

.hide-subsequent-rows {
    display: none;
    grid-template-rows: 1fr;
    grid-auto-rows: 0;
    padding-bottom: 0;
    row-gap: 0;
    overflow: hidden;
}

.remaining__count {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    font-weight: 500;
    color: #f6f6f6;
}

.gallery__grid-img .images-hover {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery__grid-img .remaining__count {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery__grid-img .images-hover:hover {
    opacity: 1;
}

.gallery__grid-img .zoom-btn {
    position: relative;
    font-size: 25px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, .6);
    display: inline-block;
}

.gallery__grid-content:first-child .gallery__grid-img .zoom-btn {
    font-size: 35px;
}

.gallery__grid-content:first-child .gallery__grid-img .image__size-66 a {
    padding-bottom: 82.25%;
}

.gallery__album-box {
    display: flex;
    gap: 20px;
}

.gallery__album-box-content {
    flex: 1;
}