/* Botones SM_ESCUCHA 360 */
.botones-sm_escucha360 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 35px !important;
    margin-top: 35px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

/* Estilo base de los botones */
.botones-sm_escucha360 .wp-block-button__link {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-decoration: none !important;
    text-align: center !important;
}

/* --- BOTÓN 1: Talleres (Color Coral cálido que combina con el lila) --- */
.botones-sm_escucha360 .wp-block-button:nth-child(1) .wp-block-button__link {
    background: linear-gradient(135deg, #ff7043 0%, #e64a19 100%) !important;
    box-shadow: 0 8px 18px rgba(255, 112, 67, 0.3) !important;
}

/* Iconos antes y después para Talleres */
.botones-sm_escucha360 .wp-block-button:nth-child(1) .wp-block-button__link::before {
    content: "💡 ";
    margin-right: 8px;
}
.botones-sm_escucha360 .wp-block-button:nth-child(1) .wp-block-button__link::after {
    content: " 💡";
    margin-left: 8px;
}

.botones-sm_escucha360 .wp-block-button:nth-child(1) .wp-block-button__link:hover {
    background: linear-gradient(135deg, #e64a19 0%, #bf360c 100%) !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 12px 22px rgba(230, 74, 25, 0.4) !important;
}

/* --- BOTÓN 2: Comunidad (Lila / Violeta) --- */
.botones-sm_escucha360 .wp-block-button:nth-child(2) .wp-block-button__link {
    background: linear-gradient(135deg, #7e57c2 0%, #5e35b1 100%) !important;
    box-shadow: 0 8px 18px rgba(126, 87, 194, 0.3) !important;
}

/* Iconos antes y después para Comunidad (cambiado a bocadillos de diálogo) */
.botones-sm_escucha360 .wp-block-button:nth-child(2) .wp-block-button__link::before {
    content: "💬 ";
    margin-right: 8px;
}
.botones-sm_escucha360 .wp-block-button:nth-child(2) .wp-block-button__link::after {
    content: " 💬";
    margin-left: 8px;
}

.botones-sm_escucha360 .wp-block-button:nth-child(2) .wp-block-button__link:hover {
    background: linear-gradient(135deg, #5e35b1 0%, #311b92 100%) !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 12px 22px rgba(94, 53, 177, 0.4) !important;
}

/* Adaptación para móviles */
@media (max-width: 600px) {
    .botones-sm_escucha360 {
        gap: 15px !important;
    }

    .botones-sm_escucha360 .wp-block-button {
        width: 100% !important;
    }

    .botones-sm_escucha360 .wp-block-button__link {
        width: 100% !important;
        display: block !important;
        padding: 14px 20px !important;
    }
}
/* Fin BOTONES SM_ESCUCHA 360 */
/* Talleres SM_ESCUCHA 360 */

/* 1. Rejilla a 2 columnas alineada arriba */
.tarjetas-talleres .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    align-items: start !important; /* Fuerza a que la rejilla empiece arriba */
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 650px) {
    .tarjetas-talleres .wp-block-post-template {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* 2. Tarjeta blanca (Elimina cualquier margen superior propio de WordPress) */
.tarjetas-talleres .wp-block-post-template > li {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 18px !important;
    margin: 0 !important; /* <--- ELIMINA EL DESNIVEL */
    align-self: start !important; /* <--- ALINEA TODAS LAS TARJETAS ARRIBA */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.tarjetas-talleres .wp-block-post-template > li:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 3. Título del Taller */
.tarjetas-talleres .wp-block-post-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 6px 0 !important;
    color: #1a202c !important;
}

.tarjetas-talleres .wp-block-post-title a {
    color: inherit !important;
    text-decoration: none !important;
}

/* 4. Fecha */
.tarjetas-talleres .wp-block-post-date {
    font-size: 0.825rem !important;
    font-weight: 600 !important;
    color: #718096 !important;
    margin-bottom: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* 5. Imagen Destacada (Grande, nítida y a ancho completo) */
.tarjetas-talleres .wp-block-post-featured-image {
    width: 100% !important;
    margin: 0 0 16px 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    background: transparent !important;
}

.tarjetas-talleres .wp-block-post-featured-image img {
    width: 100% !important;
    height: 170px !important; /* Foto grande y proporcionada */
    object-fit: cover !important; /* Llena el recuadro sin marcos grises */
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 12px !important;
    display: block !important;
}

/* 6. Botón */
.tarjetas-talleres .wp-block-read-more {
    margin-top: auto !important;
    background-color: #005f73 !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 10px 16px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease !important;
}

.tarjetas-talleres .wp-block-read-more:hover {
    background-color: #004959 !important;
    color: #ffffff !important;
}

/* 7. Contenedor centrado y separado de las tarjetas */
.tarjetas-talleres .wp-block-query-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 35px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

/* 8. Todos los elementos (números, botones anterior/siguiente) convertidos en botones */
.tarjetas-talleres .wp-block-query-pagination a,
.tarjetas-talleres .wp-block-query-pagination span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 14px !important;
    min-width: 38px !important;
    height: 38px !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #2d3748 !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s ease !important;
}

/* 9. Efecto al pasar el ratón por encima */
.tarjetas-talleres .wp-block-query-pagination a:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #005f73 !important;
    transform: translateY(-2px) !important;
}

/* 4. Página ACTIVA (en la que está navegando el usuario) */
.tarjetas-talleres .wp-block-query-pagination .current,
.tarjetas-talleres .wp-block-query-pagination span.page-numbers.current {
    background-color: #005f73 !important;
    color: #ffffff !important;
    border-color: #005f73 !important;
    box-shadow: 0 4px 10px rgba(0, 95, 115, 0.25) !important;
}

/* 10. Ajuste para los textos "Página anterior" y "Página siguiente" */
.tarjetas-talleres .wp-block-query-pagination-previous,
.tarjetas-talleres .wp-block-query-pagination-next {
    padding: 8px 16px !important;
}
/* Fin Talleres SM_ESCUCHA 360 */