/* =========================
   MENTORSHIP & LEARNING MODEL
   ========================= */

.mentor-section {
  background-image: linear-gradient(180deg, #0B73D00F 0%, #0B73D005 100%);
  padding: 80px 0;
}

.mentor-wrap {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

/* TITLE */
.mentor-title {
  text-align: center;
  color: #2c3e50;
  font-size: 32px;
  margin-bottom: 20px;
}

/* GRID */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* CARD */
.mentor-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  font-weight: 600;
  color: #2c3e50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* BORDER COLORS */
.mentor-card-blue {
  border-left: 6px solid #317ffe;
}

.mentor-card-yellow {
  border-left: 6px solid #d4ff00;
}

/* HOVER */
.mentor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mentor-grid {
    grid-template-columns: 1fr;
  }
}
