/* About Author Section Styles */
.author-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
  margin-top: 60px;
}

.author-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.author-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 8px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.author-title {
  font-size: 18px;
  color: #667eea;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-specialization {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin: 0 0 20px 0;
}

.author-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 20px 0;
  text-align: justify;
}

.author-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .author-photo {
    width: 150px;
    height: 150px;
  }

  .author-name {
    font-size: 24px;
  }

  .author-title {
    font-size: 16px;
  }

  .author-bio {
    text-align: center;
    font-size: 15px;
  }

  .author-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .author-section {
    padding: 40px 0;
    margin-top: 40px;
  }

  .author-card {
    padding: 25px 15px;
  }

  .author-photo {
    width: 120px;
    height: 120px;
  }

  .author-name {
    font-size: 22px;
  }

  .author-title {
    font-size: 14px;
  }

  .author-bio {
    font-size: 14px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
