.author-section {
  background-color: #11111B;
  color: #FFFFFF;
  padding: 4rem 2rem;
}

.author-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .author-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.author-photo img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(20, 200, 96, 0.3);
}

.author-bio h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #14C860;
}

.author-bio p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #E0E0E0;
}

.insta-link {
  display: inline-block;
  margin-top: 1rem;
  color: #14C860;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.insta-link:hover {
  border-bottom: 1px solid #14C860;
}
