.elementor-2983 .elementor-element.elementor-element-47cbac6 > .elementor-widget-container{margin:20px 0px 0px 0px;}.elementor-2983 .elementor-element.elementor-element-47cbac6{text-align:center;}.elementor-2983 .elementor-element.elementor-element-cba157d > .elementor-container{max-width:1000px;}.elementor-2983 .elementor-element.elementor-element-4a46a7c > .elementor-container{max-width:1000px;}/* Start custom CSS for html, class: .elementor-element-5d49eac *//* ===== SECTION ===== */
.mentors {
  direction: rtl;
  padding: 20px;
  display: block;
}

.mentors .title {
  text-align: center;
  color: #0052A4;
  margin-bottom: 25px;
}

/* ===== GRID ===== */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 160px);
  gap: 20px;
  justify-content: center;
  width: 100%;
}

/* ===== CARD ===== */
.mentor-card {
  width: 160px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  border-top: 4px solid #00A690;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

/* ===== AVATAR ===== */
.mentor-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00A690;
  background: #E6F7F4;
}

.mentor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== NAME ===== */
.mentor-name {
  font-weight: 700;
  font-size: 15px;
  color: #0052A4;
  margin-bottom: 10px;
}

/* ===== BUTTONS ===== */
.mentor-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn {
  font-size: 12px;
  padding: 6px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn.main {
  background: #00A690;
  color: white;
}

.btn.main:hover {
  background: #008a78;
}

.btn.alt {
  background: #f1f1f1;
  color: #555;
}

.btn.alt:hover {
  background: #e2e2e2;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .mentors-grid {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }
}/* End custom CSS */