.page-list-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    grid-gap: 2rem;
}

.page-list-items > div {
    display: flex;
}

.page-list-items a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 0 10px;

    text-transform: uppercase;
    color: #000;
    font-size: 20px;
    border: 1px solid #0e1011;
}
.page-list-items a:hover {
    border: 1px solid #fab526;
}

.page-list-items a img {
    max-height: 255px;
    width: auto;
}

.page-list-items {
    margin-bottom: 30px;
}
