/* ==========================================================================
   EduHome Connect - Faculty & Mentor Profile Custom Stylesheet
   ========================================================================== */

.faculty-profile-section {
  padding: 80px 0 100px;
  background-color: #ffffff;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}

.faculty-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faculty-profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.faculty-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.faculty-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.faculty-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.faculty-badge {
  display: inline-block;
  border: 1px solid #1e293b;
  padding: 8px 18px;
  font-family: 'Raleway', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #062654;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  background: transparent;
}

.faculty-title {
  font-family: 'Raleway', 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #062654;
  line-height: 1.3;
  margin: 0 0 18px 0;
}

.faculty-desc {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.faculty-desc p {
  margin: 0 0 16px 0;
  color: inherit;
  line-height: inherit;
}

.faculty-desc p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faculty-profile-section {
    padding: 50px 0 70px;
  }

  .faculty-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .faculty-image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .faculty-badge {
    font-size: 1.2rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .faculty-title {
    font-size: 1.55rem;
  }
}

@media (max-width: 576px) {
  .faculty-profile-section {
    padding: 40px 0 60px;
  }

  .faculty-image-wrapper {
    max-width: 100%;
  }

  .faculty-badge {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .faculty-title {
    font-size: 1.35rem;
  }

  .faculty-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
