.best-products-section {
   padding: var(--padding-xxl) 0;
}

.best-products-wrapper {
    margin: 0 auto;
    max-width: 1384px;
    width: 100%;
    display: grid;
    grid-template-columns: 592px 1fr;
    gap: var(--card-list-gap);
}

.best-products-product {
    padding: 32px;
    border-radius: var(--border-radius-m);
    background: var(--color-base-black-100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.best-products-product.leader {
    background: url(../../main/first_view/image/cercle-gray.png) 60% -50px/ 250px no-repeat,
                url(../../main/first_view/image/figure-gray-left.png) 100% 60% / 150px no-repeat,
                var(--color-base-black-100);
}

.best-products-product h3 {
    margin-top: 24px;
}

.best-products-product-text {
    color: var(--color-base-black-400);
}

.best-products-product.diplom {
    grid-row: 1 / 3;
}

.best-products-product.diplom .best-products-product-text {
    text-align: center;
    margin-bottom: var(--padding-m);
}

.best-products-product-img-wrapper {
    display: flex;
    gap: 8px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.best-products-product-img-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.best-products-product-img-wrapper::-webkit-scrollbar-track,
.best-products-product-img-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
}

.best-products-product.diplom .best-products-product-img-wrapper {
    display: block;
}

.best-products-product.diplom .best-products-product-img-wrapper img {
    height: 100%;
    width: 100%;
}

.best-products-product.top {
    padding-right: 0;
}

.best-products-product.top h3,
.best-products-product.top .best-products-product-text {
    padding-right: 32px;
}

.best-products-product.top .best-products-product-img-wrapper {
    align-items: center;
}

.best-products-product.top .best-products-product-img-wrapper>div {
    flex: 0 0 174px;
}

@media (max-width: 1440px) {
    .best-products-wrapper {
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 1025px) {
    .best-products-section {
        padding: var(--padding-xl) 0;
    }

    .best-products-product.diplom {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
        padding-bottom: 0;
    }

    .best-products-product.diplom .best-products-product-img-wrapper {
        text-align: center;
    }

    .best-products-product.diplom .best-products-product-img-wrapper img {
        width: auto;
        height: auto;
    }

    .best-products-product.top .best-products-product-img-wrapper>div {
        flex: 0 0 115px;
    }
}

@media (max-width: 767px) {
    .best-products-wrapper {
        grid-template-columns: 1fr;
    }

    .best-products-product.diplom {
        grid-row: 1 / 1;
        grid-column: 1 / 1;
    }

    .best-products-product.diplom {
        padding: 32px 8px;
    }

    .best-products-product.diplom h3 {
        padding: 0 24px;
        text-align: center;
    }

    .best-products-product.diplom h3 br {
        display: none;
    }

    .best-products-product.diplom .best-products-product-img-wrapper img {
        width: 100%;
    }

    .best-products-product.leader .best-products-product-img-wrapper {
        max-width: 230px;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .best-products-product.top .best-products-product-img-wrapper {
        min-height: 184px;
    }
}

@media (max-width: 520px) {
    .best-products-product.top .best-products-product-img-wrapper>div {
        flex: 0 0 84px;
    }
}
@media (max-width: 410px) {
    .best-products-product.diplom .best-products-product-text > br{
        display: none;
    }
}
