.entries.albums {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.entries.albums .entry.album {
    list-style: none !important;
    text-align: center;
    margin: 0 auto;
}

.entries.albums .entry.album:before {
    content: none !important;
}

.entries.albums .entry-image-link {
    display: inline-block;
    text-decoration: none;
}

.entries.albums .entry-title {
    display: block;
    font-size: 20px;
    line-height: 1em;
}

@media screen and (min-width: 920px) {

    .entries.albums {
        grid-template-columns: 1fr 1fr;
    }

}