.author-page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.author-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.author-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.author-info {
  flex: 1;
  min-width: 280px;
}

.author-info p {
  font-size: 18px;
  text-align: justify;
}

.author-info h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.author-info a {
  color: #0077cc; 
  text-decoration: none; 
}

.author-info a:hover {
  text-decoration: underline; 
}
@media (max-width: 768px) {
  .author-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto;
  }

  .author-info {
    text-align: justify;
  }

  .author-info h1 {
    text-align: center;
  }
}

