.results {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    max-width: 98%;
    border-radius: var(--bradMed);
    overflow: hidden;
    position: absolute;
    pointer-events: auto;
}

.results > .swiper-wrapper {
    aspect-ratio: 4/2;
    max-height: 419px;
    max-height: unset !important;
    align-items: stretch !important;
}

.results .swiper-slide {
    height: unset !important;
    border-radius: var(--bradMed);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.results .swiper-slide img {
    object-position: top;
    aspect-ratio: 1 / 1;
}
.resultControls {
    width: 85%;
}
.resultControls > div {
    background-color: transparent !important;
}
.resultControls > div img {
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .results > .swiper-wrapper {
        aspect-ratio: 0.5/1;
    }
    .results > .swiper-wrapper img {
        object-position: top;
    }
    .resultControls {
        display: flex;
        width: 117%;
    }
    .results .swiper-slide {
        width: 74%;
    }
    .resultControls {
        display: none;
    }

    .wrapper .results{
        margin-left: 0;
        margin-right: 0;
    }

    .wrapper .results::after{
        content: '';
        display: block;
        position: absolute;
        left:0;
        top: 0;
        width: 100%;
        height: 100%;
        background: red;
        z-index: 10;
        background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 50%, rgba(56, 160, 61, 0) 80%, rgba(0, 0, 0, 1) 100%);
        pointer-events: none;
    }
}
