div.gallery-image {
    position: relative;
    display: inline-block;
    width: 24%;
    height: auto;
    text-align: center;
    padding: 3px;
}

div.gallery-image div.gallery-image-img {
    display: inline-block;
    background-color: #f0f0f0;
}

div.gallery-image div.gallery-image-img img {
    width: 100%;
    height: auto;
    border: 1px solid black;
}

div.gallery-image div.gallery-image-title {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    margin: 2px 0px 0px 0px;
    color: #000;
    padding-bottom: 20px;
}

.gallery.clearfix {
    margin-right: -30px;
}


@media screen and (max-width: 500px) {
    div.gallery-image {
        width: 48%;
    }
}