.wherebuy .order-points .container-inner {
    display: block;
    width: 100%;
}

.order-points__list {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}

.order-points__item {
    padding: 31px 40px;
    border-bottom: 1px solid #EDEDED;
    background-color: #fff;
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 20px;
    align-items: center;
}

.order-points__logo {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.33);
    border-radius: 15px;
}

.order-points__logo img {
    width: 100%;
    object-fit: contain;
}

.order_points__title {
    font-size: 20px;
    line-height: 110%;
    font-weight: 600;
}

.order-points__item .contact-button.buy:hover {
    background-color: #EDEDED;
}

@media (max-width: 1920px) {
    .order-points__list {
        border-radius: calc(10px + (20 - 10) * ((100vw - 768px) / (1920 - 768)));
    }

    .order-points__item {
        padding: calc(20px + (31 - 20) * ((100vw - 768px) / (1920 - 768))) calc(20px + (40 - 20) * ((100vw - 768px) / (1920 - 768)));
        grid-template-columns: calc(48px + (80 - 48) * ((100vw - 768px) / (1920 - 768))) 1fr auto auto;
        row-gap: calc(10px + (20 - 10) * ((100vw - 768px) / (1920 - 768)));
    }

    .order-points__logo {
        width: calc(48px + (80 - 48) * ((100vw - 768px) / (1920 - 768)));
        height: calc(48px + (80 - 48) * ((100vw - 768px) / (1920 - 768)));
        border-radius: calc(8px + (15 - 8) * ((100vw - 768px) / (1920 - 768)));
    }
}


@media (max-width: 768px) {
    .order-points__item {
        grid-template-columns: 48px auto;
        row-gap: 10px;
        padding: 20px;
    }

    .order-points__item .contact-button.buy {
        width: auto;
        grid-row: 3/4;
        grid-column: 1/3;
    }

    .order-points__logo {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        grid-row: 1/2;
    }

    .order_points__title {
        grid-row: 1/2;
    }

    .oreder-points__raiting {
        grid-row: 2/3;
        grid-column: 1/3;
    }

    .order-points__list {
        border-radius: 10px;
    }
}
/* ─── TOI-8698: регион дилера в карточке ручного списка ──────────────────────
   Имя и регион стоят в ОДНОЙ ячейке сетки: колонок в .order-points__item
   остаётся четыре (лого / имя / рейтинг / кнопка), раскладку ломать не нужно.
   Мобильное правило продублировано ниже своим медиазапросом — правило
   `.order_points__title{grid-row:1/2}` выше по файлу теперь адресует не
   грид-элемент, а его потомка, и в одиночку строку больше не держит. */
.order-points__name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.order-points__region {
    font-size: 15px;
    line-height: 130%;
    color: var(--ink-secondary, #6B6B6B);
}

@media (max-width: 768px) {
    .order-points__name {
        grid-row: 1/2;
        grid-column: 2/3;
    }

    .order-points__region {
        font-size: 13px;
    }
}
