.quote-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 16px;
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-icon {
    flex-shrink: 0;
    width: 44px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.quote-content {
    flex: 1;
    min-width: 0;
}

.quote-content p {
    margin: 0;
}

.quote-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: #1F1F1F;
    margin-bottom: 24px !important;
}

.quote-author {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #595959;
}

/* Адаптивность */
@media (max-width: 767px) {
    .quote-block {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .quote-icon {
        width: 36px;
        height: 32px;
    }
    
    .quote-text {
        font-size: 18px!important;
    }
    
    .quote-author {
        font-size: 14px!important;
    }
}

@media (max-width: 480px) {
    .quote-block {
        padding: 20px;
        gap: 16px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .quote-author {
        font-size: 13px;
    }
}

/* Стили для редактора */
.quote-block-editor {
    margin: 20px 0;
}

.quote-block-editor .quote-block {

}

.quote-block-editor .quote-block:hover {
    border-color: #007cba;
}

/* Стили для панели настроек */
.components-panel__body .components-base-control {
    margin-bottom: 16px;
}

.components-panel__body .components-base-control:last-child {
    margin-bottom: 0;
}

/* Стили для цветового пикера */
.components-color-picker {
    margin-bottom: 16px;
}

/* Стили для селекта */
.components-select-control__input {
    width: 100%;
}

/* Дополнительные стили для иконок */
.quote-icon svg {
    transition: transform 0.2s ease;
}

.quote-block:hover .quote-icon svg {
    transform: scale(1.05);
}

/* Стили для различных фонов */
.quote-block.bg-cream {
    background-color: #F5F1E8;
}

.quote-block.bg-blue {
    background-color: #F0F8FF;
}

.quote-block.bg-mint {
    background-color: #F0FFF0;
}

.quote-block.bg-yellow {
    background-color: #FFF8DC;
}

.quote-block.bg-gray {
    background-color: #F5F5F5;
}
