/* Frontend and Editor styles */
.quote-section,
.quote-section-editor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quote-section .container{
    margin-block: 150px;
}

.quote-section .quote-overlay,
.quote-section-editor .quote-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-section-editor .container {
    margin-block: 150px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.quote-section:before,
.quote-section-editor:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-green-primary);
    opacity: 15%;
    display: flex;
    align-items: center;
}

.quote-section .quote-overlay:before,
.quote-section-editor .quote-overlay:before {
    content: '';
    position: absolute;
    height: clamp(150px, 50%, 400px);
    width: clamp(150px, 50%, 400px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    background-image: url('../../assets/img/hand_links.png');
    z-index: -1;
}

.quote-section .quote-overlay:after,
.quote-section-editor .quote-overlay:after {
    content: '';
    position: absolute;
    height: clamp(150px, 50%, 400px);
    width: clamp(150px, 50%, 400px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    bottom: 0;
    right: 0;
    background-image: url('../../assets/img/hand_rechts.png');
    z-index: -1;
}

.quote-section .quote-content,
.quote-section-editor .quote-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-section .quote-content .block-quote,
.quote-section-editor .quote-content .block-quote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-style: italic;
    position: relative;
    color: black;
}

.quote-section .quote-inner-blocks,
.quote-section-editor .quote-inner-blocks {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .quote-section .quote-content .block-quote,
    .quote-section-editor .quote-content .block-quote {
        font-size: 1.4rem;
    }

    .quote-section,
    .quote-section-editor {
        min-height: 400px;
    }

    .quote-section .container{
        margin-block: 100px;
    }

    .quote-section-editor .container {
        margin-block: 100px;
    }
}
