@media screen and (max-width: 769px) {
    .uni-search-item {
        height: auto !important;
        flex-direction: column !important;
    }

    .uni-search-item > div:nth-of-type(1) {
        width: 100% !important;
        height: 265px;
    }

    .uni-search-item > div:nth-of-type(1) > img {
        object-fit: cover;
    }

    .uni-search-item > div:nth-of-type(1) > div {
        transition: all 0.5s;
    }

    .uni-search-item > div:nth-of-type(2) {
        width: 100% !important;
    }
}

.uni-search-item:hover > div:nth-of-type(1) > div {
    filter: brightness(1.1);
}

