.module-new-bg {
    position: relative;
    margin: 0px -1.6rem;
    padding: 2.4rem 1.6rem;
    border-radius: 8px;
    overflow: hidden;
}

/* ФОН окремо */
.module-new-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url(https://carauto.com.ua/image/catalog/promo/backgrounds/promo-9.png);
    background-repeat: repeat; /* 🔥 КЛЮЧ */
    background-position: center; /* можна навіть прибрати */
    background-size: 200px; /* 🔥 ОСЬ СЮДИ */

    -webkit-mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-composite: intersect;

    mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;

    z-index: 0;

    margin-top: 30px;
}

/* КОНТЕНТ зверху */
.module-new-bg > * {
    position: relative;
    z-index: 1;
}

.module-top-bg {
    position: relative;
    /*margin: 10px -1.6rem;*/
        margin: 0px -1.6rem;
    padding: 2.4rem 1.6rem;
    /*padding: 1.4rem 1.6rem;*/
    border-radius: 8px;
    overflow: hidden;
}

.module-top-bv {
    position: relative;
    /*margin: 10px -1.6rem;*/
        margin: 0px -1.6rem;
    padding: 2.4rem 1.6rem;
   /* padding: 1.4rem 1.6rem;*/
    border-radius: 8px;
    overflow: hidden;
}

/* ФОН */
.module-top-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url(https://carauto.com.ua/image/catalog/promo/backgrounds/promo-7.png);
    background-repeat: repeat;
    background-size: 200px; /* можеш прибрати або змінити */

    /* fade */
    -webkit-mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-composite: intersect;

    mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;

    z-index: 0;

    margin-top: 30px;
}

.module-top-bv::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url(https://carauto.com.ua/image/catalog/promo/backgrounds/BV.png);
    background-repeat: repeat;
    background-size: 200px; /* можеш прибрати або змінити */

    /* fade */
    -webkit-mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-composite: intersect;

    mask-image: 
        linear-gradient(to right, transparent, black 10%, black 90%, transparent),
        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;

    z-index: 0;

    margin-top: 30px;
}

/* затемнення як у тебе було */
.module-top-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0, 0, 0, 0.18);*/
    z-index: 1;
}

/* контент зверху */
.module-top-bg > * {
    position: relative;
    z-index: 2;
}