div.blog-tags {
    gap: 20px;
}
.blog-tags .blog-tag {
    font-size: 17px;
}
.blog-tags .blog-tag.active {
    background-color:#d8353c;
}
div.review__rating {
    height:auto;
}
.review__service {
    margin: 10px 0 0;
    max-width: 190px;
}
.review__service a {
    display: flex;
    align-items: center;
    padding: 5px 14px;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    border-radius: 50px;
    border: 1px solid #d8353c;
    background-color: #fff;
    color: #d8353c;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.review__service a:hover {
    background-color: rgba(238, 63, 70, 0.1);
}
.reviews__title {
    line-height: 1.4;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    div.blog-tags {
        gap: 10px;
        margin-bottom: 10px;
    }
    p.reviews__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}