.reviews-block__item-wrapper {
    display: grid;
    justify-content: center;
    max-width: 994px;
    min-height: 377px;
    margin: 0 auto 48px;
    grid-gap: 48px;
}

.reviews-block__item-text {
    display: flex;
    align-items: start;
    height: auto;
}

.reviews-block__item-text p {
    font-size: 32px;
    line-height: 44px;
    color: var(--se-heading-color);
    text-align: center;
    letter-spacing: -0.01em;
}

.reviews-block__author {
    display: grid;
    justify-content: center;
    grid-gap: 24px;
}

.reviews-block__author-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    margin: 0 auto;
}

.reviews-block__author-img_background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.reviews-block__author-img svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.reviews-block__author-img img {
    max-width: 90px;
}

.reviews-block__author-name {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--se-heading-color);
    text-align: center;
}

.reviews-block__author-role {
    font-size: 16px;
    line-height: 24px;
    color: var(--se-text-color);
    text-align: center;
}

@media screen and (max-width: 991px) {
    .reviews-block__item-wrapper {
        min-height: initial;
        margin-bottom: 32px;
        grid-gap: 32px;
    }

    .reviews-block__item-text p {
        display: flex;
        align-items: center;
        min-height: 190px;
        font-size: 28px;
        line-height: 38px;
    }
}

@media screen and (max-width: 767px) {
    .reviews-block {
        padding-top: 48px;
        padding-bottom: 48px;
        margin-right: -20px;
        margin-left: -20px;
        background-color: var(--se-main-color-grey);
        border-top: 1px solid var(--se-stroke-color);
        border-bottom: 1px solid var(--se-stroke-color);
    }

    .reviews-block__wrapper {
        margin-right: 20px;
        margin-left: 20px;
    }

    .reviews-block__item-text {
        height: 190px;
    }

    .reviews-block__item-text p {
        min-height: 231px;
        font-size: 24px;
        line-height: 33px;
        text-align: start;
    }

    .reviews-block__item-wrapper {
        justify-content: start;
        margin-bottom: 24px;
        grid-gap: 24px;
    }

    .reviews-block__author {
        justify-content: start;
        grid-template-columns: 60px auto;
        grid-gap: 20px;
    }

    .reviews-block__author-name {
        text-align: start;
    }

    .reviews-block__author-role {
        font-size: 14px;
        line-height: 20px;
        text-align: start;
    }

    .reviews-block .slider-navigation__wrapper:not(.redesign .slider-navigation__wrapper) {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 40px);
        padding: 12px;
        margin-right: 20px;
        margin-left: 20px;
        background: #fff;
        border: 1px solid var(--se-stroke-color);
        border-radius: 5px;
        box-shadow: 0 4px 12px -1px rgba(29, 29, 38, 0.08);
    }

    .reviews-block__author-img {
        width: 70px;
        height: 70px;
    }

    .reviews-block__author-img img {
        max-width: 58px;
    }

    .reviews-block__author-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .reviews-block__item-text {
        height: auto;
    }
}