/* =====================
   MENTOR SEO
===================== */
.mentor-section {
  background: radial-gradient(circle at left, rgba(212, 175, 55, .12), transparent 35%), #050505;
  padding: 110px 25px;
}

.mentor-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.mentor-image {
  height: 620px;
  border-radius: 34px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(212, 175, 55, .25);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.mentor-content h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}

.mentor-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
  margin-bottom: 20px;
}

.mentor-content strong {
  color: white;
}

.mentor-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
}

.mentor-link:hover {
  color: #d4af37;
}

/* LIST */
.mentor-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mentor-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
}

.mentor-item span {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4af37;
  color: #050505;
  font-weight: 900;
}

.mentor-item h3 {
  font-size: 19px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.mentor-item p {
  font-size: 15px;
  margin: 0;
  color: #aaa;
}

/* STATS */
.mentor-stats {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}

.mentor-stats strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #d4af37;
}

.mentor-stats span {
  font-size: 14px;
  font-weight: 700;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mentor-container {
    grid-template-columns: 1fr;
  }
  
  .mentor-image {
    height: 450px;
  }
}

@media (max-width: 520px) {
  .mentor-section {
    padding: 80px 20px;
  }
  
  .mentor-image {
    height: 360px;
  }
  
  .mentor-stats {
    flex-wrap: wrap;
  }
}