.quote {
    position: relative;
    margin-block: var(--tb-val-s);
    padding-block: var(--tb-val-m);
    padding-inline: 200px 140px;
    background-color: var(--bg-l-purple);
    border-radius: 30px;
}

.quote:before,
.quote:after {
    content: "";
    display: block;
    position: absolute;
    width: 105px;
    height: 80px;
    /* background-image: url("../images/general/icon/quotes-icon.svg"); */
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.quote:before {
    top: calc(var(--tb-val-s) * -1);
    right: 30px;
}

.quote:after {
    left: 30px;
    bottom: calc(var(--tb-val-s) * -1);
    transform: rotate(180deg);
}

.quote-text {
    margin: 0;
    font-family: var(--quote-font);
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--clr-black);
}

.quote-author {
    margin-top: var(--tb-val-xs);
    font-weight: 700;
    color: var(--acc-purple);
}

@media screen and (max-width: 1440px) {
    .quote {
        padding-inline: 180px 100px;
    }

    .quote:before,
    .quote:after {
        width: 92px;
        height: 70px;
    }

    .quote-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .quote {
        padding: 40px 24px;
    }

    .quote:before,
    .quote:after {
        width: 56px;
        height: 43px;
    }

    .quote:before {
        right: 24px;
    }

    .quote:after {
        left: 24px;
    }

    .quote-text {
        font-size: 18px;
    }
}