.reviews-block {
    padding: 120px 0;
    text-align: center;
    background-color: #fff;
}

.reviews-block__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    text-align: left;
    margin-bottom: 24px;
    color: #e71123;
    max-width: 696px;
    text-align: left;
}

.reviews-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.reviews-block__card {
    flex: 1 1 50%;
    border: 1px solid red;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    background-color: #fff;
    text-align: left;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.reviews-block__content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.reviews-block__client {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.reviews-block__client strong {
    font-size: 24px;
    font-family: Arial, sans-serif;
}

.reviews-block__client span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.reviews-block__quote {
    font-size: 48px;
    color: #ccc;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.reviews-block__btn-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.reviews-block__btn {
    display: inline-block;

    padding: 14px 30px;
    border: 2px solid #d40000;
    border-radius: 30px;
    color: #d40000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.reviews-block__btn:hover {
    background: #d40000;
    color: #fff;
}

@media screen and (max-width: 1350px) {
    .reviews-block__card {
        flex: none;
        width: 47%;
    }
}

@media screen and (max-width: 767px) {
    .reviews-block {
        padding: 92px 0;
    }

    .reviews-block__card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .reviews-block__content {
        font-size: 14px;
    }

    .reviews-block__client span {
        font-size: 12px;
    }

    .reviews-block__client strong {
        font-size: 20px;
    }
}