.utp-block
{
    padding: 128px 0 64px;
}

.utp-block__list
{
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.utp-block__card
{
    padding: 4px;
}

.utp-block__card-header
{
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 50px;

    margin-bottom: 16px;
}

.utp-block__card-header svg
{
    width: 24px;
    height: 24px;
}

.utp-block__card-header svg path
{
    fill: #505050;
}

.utp-block__card-title
{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

@media screen and (max-width: 992px)
{
    .utp-block__list
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 560px)
{
    .utp-block__list
    {
        grid-template-columns: repeat(1, 1fr);
    }
}