.component.text-quote {
    background-repeat: no-repeat;
    background-position: center left;
    background-origin: content-box;
    background-clip: content-box;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.component.text-quote.reverse {
    background-position: center right;
    justify-content: flex-start;
}

.component.text-quote.full {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.component.text-quote .image {
    display: none;
}

.component.text-quote .content {
    background-color: var(--white);
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 40px;
    margin: 120px 0;
}
@media (max-width: 768px) {
    .component.text-quote .content {
        padding: 40px 20px;
    }
}

.component.text-quote .quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-end;
}

.component.text-quote.reverse .quote {
    align-self: flex-start;
}

.component.text-quote .name {
    font-weight: bold;
}

.component.text-quote .quote svg {
    width: 50px;
}

.component.text-quote .text {
    font-size: 25px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .component.text-quote {
        background: none !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        min-height: auto;
    }

    .component.text-quote .content {
        max-width: 100%;
        margin: 0;
    }

    .component.text-quote .image {
        display: block;
        width: 100%;
    }

    .component.text-quote .text {
        font-size: 19px;
    }

    .component.text-quote .quote {
        align-self: flex-start;
    }
}
