/**
 * Estilos frontend del Tesauro
 *
 * @package WP_Tesauro
 */

/* Jerarquía del tesauro */
.tesauro-hierarchy {
    display: inline-block;
    font-size: 13px;
    color: #666;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 4px;
    border-left: 3px solid #667eea;
}

/* Lista de términos */
.tesauro-terms {
    display: inline-block;
    font-size: 13px;
    color: #555;
}

/* Widget de archivo por tesauro */
.widget-tesauro-archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-tesauro-archive li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.widget-tesauro-archive li:last-child {
    border-bottom: none;
}

.widget-tesauro-archive a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.widget-tesauro-archive a:hover {
    color: #667eea;
}

.widget-tesauro-archive .count {
    color: #999;
    font-size: 12px;
}

/* Badge de tesauro en posts */
.tesauro-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Taxonomía en listados */
.post-tesauro {
    margin: 10px 0;
}

.post-tesauro-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.post-tesauro-value {
    color: #666;
}

.post-tesauro-value a {
    color: #667eea;
    text-decoration: none;
}

.post-tesauro-value a:hover {
    text-decoration: underline;
}
