.malunga-biblioteca {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.malunga-biblioteca-filtros {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.malunga-filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.malunga-filtro-item label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.malunga-filtro-item input,
.malunga-filtro-item select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #fff;
    box-sizing: border-box;
}

.malunga-filtro-item input:focus,
.malunga-filtro-item select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.malunga-filtro-acciones {
    display: flex;
    gap: 0.5rem;
    align-items: end;
}

.malunga-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #212529;
    color: #fff;
    border: 1px solid #212529;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.malunga-btn:hover {
    background: #000;
    color: #fff;
}

.malunga-btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
}

.malunga-btn-secondary:hover {
    background: #5a6268;
}

.malunga-resultados-count {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.malunga-lista {
    display: grid;
    gap: 1.5rem;
}

.malunga-item {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.malunga-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.malunga-item-titulo {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    line-height: 1.4;
}

.malunga-item-titulo a {
    color: #212529;
    text-decoration: none;
}

.malunga-item-titulo a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.malunga-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.malunga-meta-item {
    display: inline-block;
}

.malunga-item-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 0.75rem;
}

.malunga-item-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.malunga-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.malunga-link:hover {
    text-decoration: underline;
}

.malunga-link-externo {
    color: #198754;
}

.malunga-link-externo:hover {
    color: #146c43;
}

.malunga-no-resultados {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .malunga-filtros-grid {
        grid-template-columns: 1fr;
    }

    .malunga-item {
        padding: 1rem;
    }

    .malunga-item-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}
