main .block.featured-quote .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

main .block.featured-quote .quote-wrapper {
    position: relative;
}

main .block.featured-quote img {
    max-width: 80px;
    position: absolute;
    bottom: 100%;
    right: 100%;
}

main .block.featured-quote .heading-l {
    line-height: 1.5;
    text-align: left;
}

main .block.featured-quote h2 {
    max-width: 590px;
    margin-bottom: var(--spacing-400)
}

main .block.featured-quote p {
    max-width: 750px;
    margin-bottom: var(--spacing-400);
}

main .block.featured-quote strong {
    color: var(--text-color-tertiary);
}

main .block.featured-quote span {
    color: var(--text-color-tertiary);
}

@media (max-width: 860px) {
    main .block.featured-quote .quote-wrapper {
        margin-left: 80px;
    }
}
@media (max-width: 600px) {
    main .block.featured-quote .quote-wrapper {
        margin-left: 0;
    }
    main .block.featured-quote img {
        max-width: 60px;
        position: absolute;
        bottom: 100%;
        right: unset;
        left: 0;
    }
    
    main .block.featured-quote {
        --medium-spacing: var(--large-spacing);
    }
}
