.regions__title {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 24px;
}

.regions__title--first {
    font-weight: 300;
}

.regions__item:not(:last-child) {
    margin-bottom: 16px;
}

.regions__item {
    background-color: #fff;
    border-radius: 16px;
    height: 98px;
    box-shadow: 0 10px 35px 0 rgba(0, 16, 73, 0.07);
}

.regions__link {
    display: flex;
    align-items: center;
    padding: 16px;
}

.regions__image {
    width: 70px;
    height: 66px;
}

.regions__name {
    margin-left: 20px;
    font-weight: 700;
    line-height: 20px;
}

.regions__show_more {
    text-align: center;
    margin-top: 24px;
}

.regions__show_more button {
    padding: 18px 40px;
    background-color: #FF9900;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .regions__title {
        margin-bottom: 48px;
        font-size: 50px;
        line-height: 50px;
    }

    .regions__list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .regions__item {
        flex: 0 1 48%;
        height: 128px;
    }

    .regions__link {
        padding: 24px;
    }

    .regions__item:not(:last-child) {
        margin-bottom: 0;
    }

    .regions__image {
        width: 85px;
        height: 80px;
        padding: 10px;
    }

    .regions__show_more {
        margin-top: 32px;
    }
}

@media (min-width: 1200px) {
    .regions__item {
        flex: 0 1 32%;
    }
}
