/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/**
 * ESTILOS DE LA FICHA TÉCNICA DE CANDIDATOS
 * Diseñado para integrarse con el tema Blocksy
 */

/* Contenedor principal: estilo tarjeta */
.single-candidatos .candidato-ficha {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Etiquetas de taxonomías (Badges) */
.single-candidatos .candidato-taxonomias {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-candidatos .candidato-taxonomias a {
    background: var(--theme-palette-color-5); /* Color neutro claro */
    color: var(--theme-palette-color-3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-candidatos .candidato-taxonomias a:hover {
    background: var(--theme-palette-color-1);
    color: #fff;
}

/* --- SECCIÓN REDES SOCIALES --- */
.single-candidatos .candidato-redes-header {
    display: flex;
    gap: 12px;
    margin-top: 0.5rem;
}

.single-candidatos .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-palette-color-5);
    border-radius: 50%;
    color: var(--theme-palette-color-3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tamaño de los iconos SVG */
.single-candidatos .social-icon svg {
    width: 20px;
    height: 20px;
}

/* Hover general de iconos */
.single-candidatos .social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Colores de marca específicos al hacer hover */
.single-candidatos .icon-instagram:hover { background: #E1306C; }
.single-candidatos .icon-x:hover { background: #000000; }
.single-candidatos .icon-linkedin:hover { background: #0077b5; }
.single-candidatos .icon-sitio_web:hover { background: #2ecc71; }

/* --- SECCIONES DE TEXTO (ACF) --- */
.single-candidatos .candidato-seccion {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.single-candidatos .candidato-seccion h2 {
    font-size: 1rem;
    text-transform: capitalize;
    color: var(--theme-palette-color-4);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* Línea decorativa al lado del título */
.single-candidatos .candidato-seccion h2::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--theme-palette-color-1);
    margin-right: 10px;
    border-radius: 2px;
}

.single-candidatos .candidato-contenido-acf {
    line-height: 1.6;
    color: var(--theme-palette-color-3);
}

/* Ocultar texto para lectores de pantalla pero mantener accesibilidad */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}