.lzb-autores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px; /* Aumentado espacio general */
    row-gap: 50px; /* Asegurar separación vertical explícita */
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.lzb-autor-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin: 0; /* Reset margins para evitar herencias negativas */
    position: relative; /* Contexto de apilamiento */
    box-sizing: border-box;
}

.lzb-autor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.lzb-autor-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff; /* Optional border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lzb-autor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lzb-autor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3460; /* Dark blue/navy tone from image approximation */
    margin: 0 0 5px;
    line-height: 1.2;
}

/* If we had a role/title, we'd style it here */
/*.lzb-autor-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}*/

.lzb-autor-bio {
    font-size: 0.95rem;
    color: #666; /* Grey text */
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lzb-autor-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto; /* Push to bottom if cards possess varied heights */
}

/* Icon Buttons */
.lzb-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #888;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lzb-btn-icon:hover {
    border-color: #ccc;
    background: #f9f9f9;
    color: #555;
}

/* Email Icon specific correction */
.lzb-email {
    width: 44px; /* Square-ish */
    padding: 0;
    color: #aaa;
}
.lzb-email svg {
    fill: currentColor;
}

/* ID ORCID Styling */
.lzb-orcid {
    font-family: Arial, sans-serif;
    color: #A6CE39; /* Official ORCID Green */
    font-weight: 600;
    gap: 8px;
    padding-left: 10px;
    padding-right: 12px;
}
.lzb-orcid:hover {
    color: #8fb826;
    border-color: #A6CE39;
}

.lzb-id-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #A6CE39;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.lzb-id-text {
    font-size: 14px;
}
