/* =========================
   MENTORSHIP PAGE ONLY
========================= */

.mentorship-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 90px;
}

/* White centered section */
.mentorship-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 50px 45px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.mentorship-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 18px;
  color: #222;
}

.mentorship-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 18px;
}

/* Buttons row */
.mentorship-buttons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Button styles */
.btn-primary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  background-color: #7a003c;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
}

.btn-primary:hover {
  filter: brightness(0.92);
}

.btn-outline {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  background-color: transparent;
  color: #7a003c;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  border: 2px solid #7a003c;
  text-align: center;
}

.btn-outline:hover {
  background-color: rgba(122, 0, 60, 0.08);
}

/* RIGHT SIDE */
.mentorship-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentorship-image-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.mentorship-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Caption under image */
.mentorship-caption {
  text-align: center;
  margin-top: 14px;
}

.caption-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #222;
}

.caption-date {
  margin: 0;
  font-size: 1rem;
  color: #666;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px) {
  .mentorship-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .mentorship-title {
    font-size: 2.2rem;
  }

  .mentorship-image-wrap img {
    height: 280px;
  }

  .mentorship-buttons {
    justify-content: center;
  }
}
