.wbox-pagelist-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.wbox-pagelist-overview .wbox-pagelist-overview-element {
    background: white;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15);
}
.wbox-pagelist-overview .wbox-pagelist-overview-element a {
    text-decoration: none !important;
}

.wbox-pagelist-overview .wbox-pagelist-overview-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    word-break: break-word;
}

.wbox-pagelist-overview .wbox-pagelist-overview-title:after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='27' viewBox='0 0 28 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.75 12.6562H25.375V14.3437H1.75V12.6562Z' fill='%23004F9F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3877 5.06262L24.1377 13.5001L15.3877 21.9376L16.6252 23.1308L26.6126 13.5001L16.6252 3.86938L15.3877 5.06262Z' fill='%23004F9F'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.4s ease-in-out;
}

.wbox-pagelist-overview .wbox-pagelist-overview-element:hover .wbox-pagelist-overview-title:after {
    transform: translateX(-0.5rem);
}
.wbox-pagelist-overview .wbox-pagelist-overview-element:hover .wbox-pagelist-overview-title {
    color: #003C73;
}

.wbox-pagelist-overview .wbox-pagelist-overview-element .thumbnail-wrap {
    overflow: hidden;
}
.wbox-pagelist-overview .wbox-pagelist-overview-element .thumbnail-wrap img {
    transition: all 0.4s ease-in-out;
}
.wbox-pagelist-overview .wbox-pagelist-overview-element:hover .thumbnail-wrap img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .wbox-pagelist-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}

@media (min-width: 1024px) {
    .wbox-pagelist-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}