.autoria {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

h2 {
  font-size: 3rem;
  color: #003b6f;
  text-align: center;
  margin: 0px 0 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #0077b6;
  margin: 10px auto 0;
  border-radius: 2px;
}

.autor-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.autor-foto {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 4px solid #0a5275;
  margin-bottom: 25px;
}

.autor-bio {
  max-width: 800px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  width: 100%;

}

.autor-bio p{
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

img, video {
  pointer-events: none;
  user-select: none;
}


