.review_bridge {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto 10px;
    padding: 0 20px;
    box-sizing: border-box;
}

.review_bridge_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e04641;
    border-radius: 4px;
    background: #fff;
    list-style: none;
}

.review_bridge_list li {
    min-width: 0;
    margin: 0;
    padding: 0;
    border-left: 1px solid #efb4b2;
}

.review_bridge_list li:first-child {
    border-left: 0;
}

.review_bridge_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 58px;
    padding: 0 12px;
    box-sizing: border-box;
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 160ms ease, color 160ms ease;
}

.review_bridge_link:hover,
.review_bridge_link:focus {
    background: #fff4f3;
    color: #d93f3b;
    text-decoration: none;
}

.review_bridge_link.is_current,
.review_bridge_link.is_current:hover,
.review_bridge_link.is_current:focus {
    background: #e04641;
    color: #fff;
}

@media (max-width: 767px) {
    .review_bridge {
        margin: 18px auto 6px;
        padding: 0 14px;
    }

    .review_bridge_link {
        height: 48px;
        padding: 0 6px;
        font-size: 14px;
    }
}

@media (max-width: 359px) {
    .review_bridge {
        padding: 0 10px;
    }

    .review_bridge_link {
        font-size: 13px;
    }
}
