.customer-review-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;

    /* if not inside a column */
    max-width: 1150px;
    padding: 0 48px;
    margin: 0 auto;
    margin-bottom: 80px;

    @media (max-width: 992px) {
        margin-left: 24px;
        margin-right: 24px;
    }
}

.wp-block-column {
    .customer-review-quote {
        margin-bottom: 48px;

        max-width: 100%;
        padding: 0;
        @media (max-width: 992px) {
            margin-left: 0;
            margin-right: 0;
        }
    }
}

.customer-review-quote__icon {
    width: 2.75rem;
    height: 1.5rem;
    transform: rotate(180deg);
}

.customer-review-quote__icon svg {
    width: 100%;
    height: 100%;
    fill: #0080ea;
    transform: rotate(180deg);
    path {
        fill: #0080ea;
    }
}

.customer-review-quote__text {
    color: var(--text-icon-neutral, #4e4b66);
    font-family: 'Plus Jakarta Sans', 'Inter', Helvetica Neue, Arial, sans-serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    line-height: 40px;
    position: relative;

    &::before,
    &::after {
        content: '”';
        position: absolute;
    }
    &::before {
        left: -15px;
    }
    &::after {
        margin-left: 10px;
    }
}

.customer-review-quote__author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.customer-review-quote__author-image {
    width: 3rem;
    height: 3rem;
    position: relative;
}

.customer-review-quote__author-photo {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    object-fit: cover;
}

.customer-review-quote__author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.125rem;
}

.customer-review-quote__author-name {
    justify-content: flex-start;
    color: #262626;
    font-size: 1rem;
    font-weight: normal;
    font-family: 'Plus Jakarta Display', sans-serif;
    line-height: normal;
}

.customer-review-quote__author-title {
    justify-content: flex-start;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: normal;
    font-family: Inter, Helvetica Neue, Arial, sans-serif;
    line-height: 1.25;
}

/* Blue Background Style Variant */
.wp-block-column {
    .customer-review-quote--blue {
        padding: 43px 48px 48px 48px;
    }
}
.customer-review-quote--blue {
    background-color: #0080ea;
    padding: 43px 48px 48px 48px;
    border-radius: 16px;

    .customer-review-quote__icon svg {
        path {
            fill: #fff;
        }
    }

    .customer-review-quote__text {
        color: white;
    }

    .customer-review-quote__text::before,
    .customer-review-quote__text::after {
        color: white;
    }

    .customer-review-quote__author {
        .customer-review-quote__author-name {
            color: white;
        }

        .customer-review-quote__author-title {
            color: white;
            opacity: 0.8;
        }
    }
}

/* Mobile responsive styles for blue variant */
@media (max-width: 768px) {
    .customer-review-quote--blue {
        padding: 24px;
    }
}
