.quote-big {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 24px;
    overflow: hidden;
}

@media(min-width:769px) {
    .quote-big {
        flex-direction: row;
    }
}

@media(min-width:769px) {
    .quote-big__image {
        flex: 1 1 40%;
    }
}

.quote-big__image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.quote-big__content {
    padding-block: 40px;
    padding-inline: 24px;
    color: #fff;
}

@media(min-width:769px) {
    .quote-big__content {
        flex: 1 1 60%;
        padding: 64px;
    }
}

.quote-big[data-theme="green"] .quote-big__content {
    background: radial-gradient(109.37% 50% at 50% 50%, #0CBB8A 0%, #097D56 100%);
}

.quote-big[data-theme="grey"] .quote-big__content {
    background: #F9FAFB;
}

.quote-big__body {
    display: grid;
    gap: 32px;
}

.quote-big__quote, .quote-big__link, .quote-big__subtitle, .quote-big__cta {
    margin: 0;
    padding: 0;
    color: #fff;
}

.quote-big__cta {
    font-size: 14px;
    transition: color 125ms ease-in;
}

.quote-big__cta:hover {
    color: #C2FAE7;
    text-decoration: none;
}

.quote-big__cta:hover svg path {
    stroke: #C2FAE7;
}

.quote-big[data-theme="grey"] :is(.quote-big__quote, .quote-big__link, .quote-big__name, .quote-big__subtitle) {
    color: #101828;
}

.quote-big[data-theme="grey"] :is(.quote-big__link, .quote-big__name):before {
    background-color: #101828;
}

.quote-big[data-theme="grey"] .quote-big__content svg path {
    fill: #101828;
}

.quote-big[data-theme="grey"] .quote-big__cta {
    color: #667085;
}

.quote-big[data-theme=grey] .quote-big__cta svg path {
    stroke: #667085;
}

.quote-big[data-theme="grey"] .quote-big__cta:hover svg path {
    stroke: #0CBB8A;
}

.quote-big__quote {
    font-size: 30px;
}

@media(min-width:769px) {
    .quote-big__quote {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.72px;
    }
}

:is(.quote-big__name, .quote-big__link) {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 28px;
}

.quote-big__link {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.25px;
    transition: color 125ms ease-in;
}

.quote-big__link:hover {
    color: #C2FAE7;
}

.quote-big[data-theme="grey"] :is(.quote-big__link, .quote-big__cta):hover {
    color: #0CBB8A;
}

:is(.quote-big__link, .quote-big__name):before {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background-color: #fff;
}

.quote-big__subtitle {
    color: #C2FAE7;
}

.quote-big[data-theme="grey"] .quote-big__subtitle {
    color: #667085;
}

.quote-big__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
}

.quote-big__footer > * {
    width: fit-content;
}

.quote-big__cta {
    display: flex;
    align-items: center;
    gap: 8px;
}