/* ════════════ MISSION & VISION SECTION ════════════ */
.mission-vision-section {
  padding: 60px 0;
  background: #fff;
}

.mv-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.mv-row:last-child {
  margin-bottom: 0;
}

.mv-img {
  flex: 0 0 200px;
}

.mv-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.mv-content {
  flex: 1;
}

.mv-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.mv-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}

.mv-title-right {
  text-align: right;
}

.mv-text-right {
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .mv-row {
    flex-direction: column;
  }

  .mv-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .mv-img img {
    height: 200px;
    width: 100%;
  }
}