/*
|--------------------------------------------------------------------------
| Bloque de cita destacada
|--------------------------------------------------------------------------
*/

.quote-block-editor {
    display: grid;
    gap: 16px;
}

.quote-text-input {
    min-height: 130px;
    resize: vertical;
}

.preview-quote-block {
    position: relative;
    margin: 28px 0;
    padding: 24px 26px 24px 32px;
    border-left: 5px solid #006fd6;
    border-radius: 0 10px 10px 0;
    background: #f4f8fc;
}

.preview-quote-block::before {
    content: "“";
    position: absolute;
    top: 5px;
    left: 10px;
    color: rgba(0, 111, 214, 0.18);
    font-family: Georgia, serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.preview-quote-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #17324d;
    font-family: Georgia, serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.55;
    white-space: pre-line;
}

.preview-quote-author {
    display: block;
    margin-top: 14px;
    color: #4b6378;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.preview-quote-author::before {
    content: "— ";
}

@media (max-width: 600px) {
    .preview-quote-block {
        padding: 21px 20px 21px 26px;
    }

    .preview-quote-text {
        font-size: 18px;
    }
}