  #category-list-control li {
    list-style-type: none;
}
#category-list-control > .categorylist-listitem > a {
    display: none;
}
.category-children {
    display: grid;
    gap: 1em;
    grid-template-rows: repeat(auto-fit, 300px);
}
@supports (width: min(350px, 100%)) {
    .category-children {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    }
}
.category-children > .categorylist-listitem {
    position: relative;
}
.category-name {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: end;
    justify-content: center;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    font-size: 24px;
    background-color: #0008;
    z-index: 1;
    padding: 1em;
    padding-bottom: 2em;
    text-align: center;
    transition: all .3s;
}
.category-name:hover {
    background-color: #6038;
    text-shadow: 0px 0px 5px black;
    box-shadow: 0px 0px 5px #000B;
    font-size: 25px;
}
.categorylist-listitem p {
    width: 100%;
    height: 100%;
    max-height: 300px;
    margin-bottom: 0px;
}
.categorylist-listitem p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}