/* 🔹 Profile Hero */
.profile-hero {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 40px auto;
  width: 95%;
  max-width: 1200px;
}

.profile-photo img {
  width: 270px;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.profile-hero-info h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003399;
}

.profile-hero-info p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px; /* ✅ เพิ่มช่องว่างด้านล่าง */
}

.profile-hero-info h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.profile-hero-info p {
  font-size: 18px;
  color: #555;
}

/* 🔹 Interview Section */
.profile-interview {
  margin: 40px auto;
  width: 95%;
  max-width: 1200px;
}

.profile-interview h2 {
  margin-bottom: 20px;
  color: #003399;
}

.qa {
  margin-bottom: 25px;
}

.qa h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.qa p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .profile-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }
}
