/*
 Theme Name: Twenty Twenty-Three Child
 Theme URI: https://example.com/
 Description: Tema hijo de Twenty Twenty-Three
 Author: Tu nombre
 Author URI: https://example.com/
 Template: twentytwentythree
 Version: 1.0.0
 Text Domain: twentytwentythree-child
*/

/* Aquí puedes agregar tus estilos personalizados */
/* Estilo personalizado para el bloque de busqueda, para que sea mñas pequeño */
.wp-block-search__input {
    border-radius: 8px !important;       /* opcional: bordes del input también redondeados */
    border: 1px solid #ccc !important;   /* opcional: borde gris suave */
    height: 25px !important;
    padding: 4px !important;
}

.wp-block-search__button {
    background-color: #d9d9d9 !important; /* gris clarito */
    color: #000000 !important;           /* texto negro */
    border: none !important;             /* sin borde */
    border-radius: 8px !important;       /* esquinas redondeadas */
    font-weight: bold;
    height: 25px !important;
    padding: 0px 12px !important;
}
/* Reduce el tamaño de la imagen destacada en entradas individuales */
.wp-block-post-featured-image img {
    max-width: 100%;     /* ajusta 70% a lo que quieras: 60%, 50%, etc */
    margin: 0 auto;      /* centra la imagen */
    display: block;
}
/* Justificar el texto del extracto en el bloque de entradas */
.wp-block-post-excerpt__excerpt {
    text-align: justify;
}

/* En listados del blog hechos con Query Loop */
.wp-block-post-excerpt {
    text-align: justify;
}
/* Justificar todo el texto del bloque de contenido (Post Content) */
.wp-block-post-content {
    text-align: justify;
}

