/* BioPage.css */

.bio-container {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #f9f9f9;
  min-height: 100vh;
}

.bio-card {
  display: flex;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.bio-image-section {
  flex: 1;
  min-width: 400px;
  background: #f0f0f0;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-text-section {
  flex: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.bio-role {
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 20px;
}

.bio-section {
  margin-bottom: 24px;
}

.bio-section h2 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.bio-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.bio-social-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.bio-social-links a {
  font-size: 1.5rem;
  color: #555;
  transition: color 0.3s ease;
}

.bio-social-links a:hover {
  color: #0077cc;
}

@media (max-width: 768px) {
  .bio-card {
    flex-direction: column;
  }

  .bio-text-section {
    padding: 30px 20px;
  }

  .bio-name {
    font-size: 1.8rem;
  }
}
