.lst-crds {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--wp--preset--spacing--x-small);
}

.lst-crds .lst__el {
    display: flex;
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .lst-crds--3 .lst__el,
    .lst-crds--4 .lst__el {
        max-width: calc( 50% - var(--wp--preset--spacing--x-small) );
    }
}

@media screen and (min-width: 640px) {
    .lst-crds--3 .lst__el,
    .lst-crds--4 .lst__el {
        max-width: calc( 33.3333% - var(--wp--preset--spacing--x-small) );
    }
}

@media screen and (min-width: 480px) {
    .lst-crds--2 .lst__el {
        max-width: calc( 50% - var(--wp--preset--spacing--x-small) );
    }
}

@media screen and (min-width: 960px) {
    .lst-crds--3 .lst__el {
        max-width: calc( 33.3333% - var(--wp--preset--spacing--x-small) )
    }
}

@media screen and (min-width: 960px) {
    .lst-crds--4 .lst__el {
        max-width: calc( 25% - var(--wp--preset--spacing--x-small) );
    }
}

.lst--2,
.lst--3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lst--2 .lst__el,
.lst--3 .lst__el {
    flex-basis: 100%;
}

@media screen and (min-width: 480px) {
    .lst--2 .lst__el {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 480px) {
    .lst--3 .lst__el {
        flex-basis: 33.3333%;
    }
}

.lst {
    margin: 0 0 var(--wp--style--block-gap);
    padding: 0;
    list-style: none;
}

.lst--us {
    list-style: none;
}

.lst--us .lst__el {
    padding: var(--wp--preset--spacing--baseline) 0;
}

.lst--us .lst__el a {
    display: block;
}

.lst--us a {
    position: relative;
    color: inherit;
    opacity: .87;
    padding: 0 .75em;
}

.lst--us a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin: auto;
    display: block;
    width: .375rem;
    height: .375rem;
    border-radius: .25em;
    color: inherit;
    background-color: currentColor;
    transform: translate3d(0,-50%,0);
    opacity: .25;
    transition: opacity 300ms ease-in-out;
}

.lst--us a:hover,
.lst--us a:focus {
    opacity: 1;
    transform: translate3d(.75rem, 0, 0);
}

.lst--us a:visited {
    color: inherit;
}

.lst--us a:hover::before,
.lst--us a:focus::before {
    opacity: 1;
}

.lst__el {
    display: block;
    width: 100%;
    max-width: 100%;
}

.lst__el:first-child {
    margin-block-start: 0.25em;
}

.lst__el a {
    text-decoration: none;
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.lst__el a:hover,
.lst__el a:focus {
    color: #3FBEFC;
}

.lst-crd {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    color: var(--wp--preset--color--base) !important;
    background-color: var(--wp--preset--color--surface);
    overflow: hidden;
    text-decoration: none;
    border-radius: 0.25em;
}

.lst-crd-tl {
    box-sizing: border-box;
    padding: .5em 1.5em;
    font-size: var(--wp--preset--font-size--x-small);
    line-height: var(--wp--custom--line-height--tight);
    display: block;
    text-align: center;
    color: inherit;
    font-weight: bold;
    text-transform: uppercase;
    order: 2;
}

.lst-crd-md {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    background-color: var(--wp--preset--color--surface);
    order: 1;
}

.lst-crd-md img {
    aspect-ratio: 16/9;
    object-fit: cover;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.lst-crd:hover img,
.lst-crd:focus img {
    filter: grayscale(100%);
}