.reviews-header {
    padding-top: 45px;
    padding-bottom: 45px;
}

.reviews-header h1 {
    margin-top: 0;
    margin-bottom: 20px;
}

.reviews-header .quote {
    margin-bottom: 0;

    font-size: 1.15rem;
    font-weight: normal;
    line-height: 1.6;
}

.reviews {
    padding-top: 35px;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.review-bubble {
    position: relative;

    max-width: 850px;
    padding: 30px 32px;

    background: var(--color-main);
    color: white;
}

.review-bubble::after {
    content: "";

    position: absolute;
    left: 45px;
    bottom: -22px;

    width: 0;
    height: 0;

    border-top: 22px solid var(--color-main);
    border-right: 32px solid transparent;
}

.review-text {
    margin: 0;

    font-size: 1.12rem;
    font-weight: normal;
    line-height: 1.7;
}

.review-name {
    margin-top: 22px;
    margin-bottom: 0;

    font-size: 0.98rem;
    font-weight: bold;
    line-height: 1.4;
}

.review-bubble:nth-child(even) {
    margin-left: auto;
}

.review-bubble:nth-child(even)::after {
    left: auto;
    right: 45px;

    border-right: 0;
    border-left: 32px solid transparent;
}

@media (max-width: 700px) {
    .reviews {
        gap: 30px;
    }

    .review-bubble,
    .review-bubble:nth-child(even) {
        width: 100%;
        margin-left: 0;

        padding: 25px;
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .review-name {
        font-size: 0.95rem;
    }
}