.gallery-detail .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.gallery-detail .grid-item {
    box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
    display: block;
    max-height: 167px;
    height: auto;
    min-width: 0;
    text-align: left;
}

.gallery-detail .grid-item a {
    display: block;
    height: auto;
    position: relative;
}

.gallery-detail .grid-item a:after {
    border: none;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.gallery-detail .grid-item img {
    display: block;
    width: 100%;
}
