

#productfilter {
    display: block;
    margin: 1rem auto;
    width: 220px;
    background: #FFF;
    font-family: 'Aller', Verdana, Arial, sans-serif;
    font-size: 1rem;
    color: #542f19;
    border: 2px solid #CCC;
    border-radius: 0.3rem;
    padding: 0.15rem 0.25rem;
    cursor: pointer;
}
#productfilter:hover {
    border-color: #542f19;
}





.extraaboutcols .block {
    height: Calc(100% - 4rem);
}


.charitylist {
    align-items: flex-start;
}
.charitylist .imgzoom {
    min-height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.charitylist p {
    margin-top: 0.5rem;
    text-align: left;
}
@media (max-width: 1028px) {
    .charitylist .imgzoom {
        min-height: 0;
        display: block;
    }
}


.imageblocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    line-height: 1;
}
.imageblocks div {
    width: 33%;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #542f19;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    transition: background-size 0.5s ease;
}
.imageblocks div:hover {
    background-size: 110% auto;
}
@media (prefers-reduced-motion) {
    .imageblocks div,
    .imageblocks div:hover {
        background-size: cover!important;
    }
}
.imageblocks div.books-games { background-image: url('imgs/deguarts-booksgames.webp'); }
.nowebp .imageblocks div.books-games { background-image: url('imgs/deguarts-booksgames.png'); }
.imageblocks div.prints { background-image: url('imgs/deguarts-prints.webp'); }
.nowebp .imageblocks div.prints { background-image: url('imgs/deguarts-prints.png'); }
.imageblocks div.all { background-image: url('imgs/deguarts-all.webp'); }
.nowebp .imageblocks div.all { background-image: url('imgs/deguarts-all.png'); }
.imageblocks div a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: rgba(84, 47, 25, 0.75);
    border-radius: 0.7rem;
    padding: 1rem;
    min-height: 220px;
    box-shadow: inset 0 0 0.75rem rgba(0,0,0,0.3); 
}
.imageblocks div a .btn {
    min-width: 246px;
}
@media (max-width: 1328px) {
    .imageblocks div a .btn {
        min-width: 180px;
    }
}
@media (max-width: 1028px) {
    .imageblocks {
        flex-direction: column;
        gap: 1rem;
    }
    .imageblocks div {
        width: 100%;
        border-radius: 0.5rem;
    }
    .imageblocks div a {
        min-height: 180px; 
        border-radius: 0.4rem;  
    }
    .imageblocks div a .btn {
        min-width: 246px;
    }
    .imageblocks div,
    .imageblocks div:hover {
        background-size: cover;
    }
}