/* --- ESTILOS ESPECÍFICOS PARA ACERCA-DE.php --- */

#autor {
    background-color: #fff;
    padding-top: 20px;
}

.author-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.author-photo {
    flex-shrink: 0;
}

.author-photo img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-secundario);
}

.author-bio h3 {
    font-size: 2rem;
}

.author-bio p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links a {
    margin-right: 15px;
    color: var(--color-primario);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-secundario);
}

/* Media queries específicas para acerca-de */
@media (max-width: 768px) {
    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .author-photo img {
        width: 200px;
        height: 200px;
    }
}