/* Bio Section Layout */
.bio-section {
  padding: 20px 0;
  background: #f8f8f8; /* adjust or remove if your template already has a background */
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 20px;
}

/* Image */
.bio-image {
  flex: 1;
  max-width: 380px;
}

.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Content */
.bio-content {
  flex: 2;
}

.bio-content h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.bio-content h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #666;
}

.bio-content p {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #333;
}

/* Highlights List */
.bio-highlights {
  margin-top: 25px;
  padding-left: 20px;
}

.bio-highlights li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
}

/* Responsive */
@media (max-width: 900px) {
  .bio-container {
    flex-direction: column;
    text-align: center;
  }

  .bio-image {
    margin: 0 auto 30px;
  }

  .bio-content h2 {
    font-size: 2rem;
  }
}
