.service-related {
    max-width: 788px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-size: 1.5rem;
    justify-content: center;
}
.service-related__name{
    padding-right: 1rem;
}

.service-related__item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 18px 20px;
    text-decoration: none;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .2s ease;
    background: #fff;
}

.service-related__item:hover {
    border-color: #00b3a4;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    color: #00b3a4;
}

.service-related__arrow {
    font-size: 18px;
    opacity: .4;
}

/* адаптив */
@media (max-width: 991px) {
    .service-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .service-related { grid-template-columns: 1fr; }
}