/**
 * Estilos para el bloque Párrafo Personalizado
 */

.wp-block-gutenberg-test-custom-paragraph {
    margin: 0 0 1.5em 0;
    padding: 0;
}

/* Estilos para letra capital */
.wp-block-gutenberg-test-custom-paragraph.has-drop-cap:not(:focus)::first-letter {
    float: left;
    font-size: 4em;
    line-height: 0.8;
    font-weight: 700;
    margin: 0.1em 0.1em 0 0;
    text-transform: uppercase;
    font-style: normal;
}

/* Clases para alineación */
.wp-block-gutenberg-test-custom-paragraph.has-text-align-center {
    text-align: center;
}

.wp-block-gutenberg-test-custom-paragraph.has-text-align-right {
    text-align: right;
}

.wp-block-gutenberg-test-custom-paragraph.has-text-align-left {
    text-align: left;
}

.wp-block-gutenberg-test-custom-paragraph.has-text-align-justify {
    text-align: justify !important;
}

/* Estilos de tamaño de fuente - con !important para forzar aplicación */

/* Tamaño pequeño - 14px */
.wp-block-gutenberg-test-custom-paragraph.font-size-small,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-small {
    font-size: 14px !important;
}

/* Tamaño normal - 16px */
.wp-block-gutenberg-test-custom-paragraph.font-size-normal,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-normal {
    font-size: 16px !important;
}

/* Tamaño medio - 18px */
.wp-block-gutenberg-test-custom-paragraph.font-size-medium, 
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-medium {
    font-size: 18px !important; /* Cambiado a 18px como solicitado */
}

/* Tamaño grande - 24px */
.wp-block-gutenberg-test-custom-paragraph.font-size-large,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-large {
    font-size: 24px !important;
}

/* Tamaño enorme - 32px */
.wp-block-gutenberg-test-custom-paragraph.font-size-huge,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-huge {
    font-size: 32px !important;
}

/* Tamaño extra grande - 42px */
.wp-block-gutenberg-test-custom-paragraph.font-size-extra-large,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-extra-large {
    font-size: 42px !important;
}

/* Asegurar que los tamaños personalizados aplicados inline se respeten */
.wp-block-gutenberg-test-custom-paragraph[style*="font-size"] {
    /* El estilo inline ya tiene !important */
}

/* Estilos de peso de fuente */
.wp-block-gutenberg-test-custom-paragraph.font-weight-normal,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-weight-normal {
    font-weight: normal !important;
}

.wp-block-gutenberg-test-custom-paragraph.font-weight-bold,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-weight-bold {
    font-weight: bold !important;
}

.wp-block-gutenberg-test-custom-paragraph.font-weight-300,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-weight-300 {
    font-weight: 300 !important;
}

.wp-block-gutenberg-test-custom-paragraph.font-weight-600,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-weight-600 {
    font-weight: 600 !important;
}

.wp-block-gutenberg-test-custom-paragraph.font-weight-800,
.editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-weight-800 {
    font-weight: 800 !important;
}

/* Compatibilidad con las clases estándar de Gutenberg */
.has-small-font-size,
.editor-styles-wrapper .has-small-font-size {
    font-size: 14px !important;
}

.has-normal-font-size,
.editor-styles-wrapper .has-normal-font-size {
    font-size: 16px !important;
}

.has-medium-font-size,
.editor-styles-wrapper .has-medium-font-size {
    font-size: 18px !important;
}

.has-large-font-size,
.editor-styles-wrapper .has-large-font-size {
    font-size: 24px !important;
}

.has-huge-font-size,
.editor-styles-wrapper .has-huge-font-size {
    font-size: 32px !important;
}

.has-extra-large-font-size,
.editor-styles-wrapper .has-extra-large-font-size {
    font-size: 42px !important;
}

/* Estilos predefinidos */
.wp-block-gutenberg-test-custom-paragraph.is-style-highlighted {
    background-color: #f7f7f7;
    border-left: 4px solid var(--color-primary, #a82025);
    padding: 1em 1.2em;
}

.wp-block-gutenberg-test-custom-paragraph.is-style-subtle {
    color: #666;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5em;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .wp-block-gutenberg-test-custom-paragraph.font-size-large,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-large {
        font-size: 22px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.font-size-huge,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-huge {
        font-size: 28px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.font-size-extra-large,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-extra-large {
        font-size: 36px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.has-drop-cap:not(:focus)::first-letter {
        font-size: 3em !important;
    }
}

@media (max-width: 480px) {
    .wp-block-gutenberg-test-custom-paragraph.font-size-medium,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-medium {
        font-size: 18px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.font-size-large,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-large {
        font-size: 20px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.font-size-huge,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-huge {
        font-size: 24px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.font-size-extra-large,
    .editor-styles-wrapper .wp-block-gutenberg-test-custom-paragraph.font-size-extra-large {
        font-size: 30px !important;
    }
    
    .wp-block-gutenberg-test-custom-paragraph.has-drop-cap:not(:focus)::first-letter {
        font-size: 2.5em !important;
    }
} 