/* Estilo para la sección de autores */
.authors {
    text-align: center;
    padding: 50px 20px;
}

.author-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

#authorInfo {
    text-align: justify;
    padding: 10px; /* Opcional, para que no quede pegado al borde */
}

.author {
    width: 250px;
    text-align: center;
}

.author img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.read-more {
    display: block;
    margin-top: 10px;
    color: #b8353d;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

/* Estilo para el modal */
.modal {
    display: none; /* Inicialmente oculto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
    color: #333;
    float: right;
    font-size: 24px;
    cursor: pointer;
}
