.resultados-autores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}
.resultado-autor {
    width: 160px;
    border: 1px solid #ccc;
    border-radius: 12px;
    text-align: center;
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.resultado-autor:hover {
    transform: scale(1.03);
}
.resultado-autor img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.resultado-autor .nombre {
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
    color: #222;
}
