/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 27 2025 | 00:31:11 */
/*
  ==================================================================
  Estilos para reemplazar el enlace "Leer más" por un icono "+"
  - v2: Corregido con el selector correcto para el bloque de WordPress.
  ==================================================================
*/

/* 
  Paso 1: Apuntamos al enlace usando la clase correcta.
*/
.wp-block-latest-posts__read-more {
    /* Ocultamos el texto original "Leer más" */
    font-size: 0 !important;
    text-indent: -9999px; /* Lo movemos fuera de la pantalla */
    
    /* Creamos el círculo */
    display: inline-block;
    width: 44px;  /* Ancho del círculo */
    height: 44px; /* Alto del círculo */
    background-color: #333333; /* Color de fondo del círculo (gris oscuro) */
    border-radius: 50%; /* Esto lo hace perfectamente redondo */
    position: relative; /* Necesario para posicionar el "+" dentro */
    transition: all 0.3s ease; /* Transición suave para el hover */
    line-height: 44px; /* Ayuda a centrar el contenido */
}

/* 
  Paso 2: Creamos la línea horizontal del "+"
*/
.wp-block-latest-posts__read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 2px; /* Grosor de la línea */
    background-color: #FFFFFF; /* Color de la línea (blanco) */
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* 
  Paso 3: Creamos la línea vertical del "+"
*/
.wp-block-latest-posts__read-more::after {
    content: '';
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: 50%;
    width: 2px; /* Grosor de la línea */
    background-color: #FFFFFF; /* Color de la línea (blanco) */
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

/* 
  Paso 4 (Opcional): Efecto al pasar el ratón (hover).
  El botón cambia de color y el "+" rota 90 grados.
*/
.wp-block-latest-posts__read-more:hover {
    background-color: #e83943; /* Cambia al color rojo corporativo */
    transform: scale(1.05); /* Agranda ligeramente el botón */
}

.wp-block-latest-posts__read-more:hover::before,
.wp-block-latest-posts__read-more:hover::after {
    transform: rotate(90deg); /* Rota el signo + */
}
