div.boxed-gallery {
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 15px;
	margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 225px;
    box-sizing: border-box;
}

div.boxed-gallery:hover {
    border: 1px solid #777;
	background-color: #eee;
}

div.boxed-gallery img {
    max-height: 80px;
    display: block;
    margin: 0 auto;
}

div.boxed-gallery-description {
	padding-top: 15px;
    text-align: center;
	word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.responsive-4 {
	padding: 0 6px;
    float: left;
    width: 24.99999%;
	box-sizing: border-box;
}

.responsive-5 {
    padding: 0 6px;
    float: left;
    width: calc(20% - 12px);
	box-sizing: border-box;
}

@media only screen and (max-width: 700px) {
    .responsive-4, .responsive-5 {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive-4, .responsive-5 {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .responsive-4.hidden-item-mobile, .responsive-5.hidden-item-mobile {
        display: none;
    }
}

.show-more-button {
    display: none;
    margin: 20px auto;
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    width: 200px;
    background: #f7f7f7;
    border-radius: 5px;
}

@media (max-width: 700px) {
    .show-more-button {
        display: block;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}