.results__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    counter-reset: results;
}

@media (min-width: 576px) {
    .results__list {
        flex-direction: row;
    }
}

.results__list-item {
    flex-grow: 1;
    flex-direction: column;
}

@media (min-width: 576px) {
    .results__list-item {
        width: calc((100% / 2) - 40px);
    }
}

.result-card {
    display: flex;
    position: relative;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .result-card {
        flex-direction: row;
        align-items: center;
    }

}

.result-card__img {
    align-self: center;
    height: 150px;
    background-image: var(--gradient-orange-to-red);
    border-radius: 20px;
    width: 80%;
    margin-bottom: -75px;
    z-index: 1;
}

@media (min-width: 992px) {
    .result-card__img {
        height: 150px;
        width: 300px;
        margin-top: 0;
        margin-bottom: 0;
        padding: 20px;
        display: flex;
        align-items: center;
        transition: transform 0.3s;
        transform: scale(.9);
    }

    .result-card:hover .result-card__img {
        transform: scale(1);
    }
}

.result-card h3 {
    margin-bottom: 20px;
    font-size: clamp(18px, 2vw, 20px);
}

.result-card__content {
    background: #fff;
    padding: 100px 25px 25px;
    border-radius: 25px;
    height: 100%;
}

@media (min-width: 992px) {
    .result-card__content {
        padding: 25px 25px 25px 100px;
        margin-left: -75px
    }
}

@media (min-width: 1200px) {
    .result-card__content {
        padding: 50px 50px 50px 100px;
        margin-left: -75px
    }
}

.result-card__img::before {
    counter-increment: results;
    content: counter(results);
    display: block;
    font-size: 150px;
    line-height: 100%;
    color: var(--light-color);
    -webkit-text-stroke: 1px var(--light-color);
    -webkit-text-fill-color: transparent;
    text-align: center;
}