/* ===== MISSION & VISION SECTION ===== */
.mv-section {
  background-color: #f9f9f9;
  padding: 64px 0;
}

/* ===== BLOCK LAYOUT ===== */
.mv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; /* 64px between content and image */
  align-items: center;
  margin-bottom: 80px;
}

/* Last block — no bottom margin */
.mv-block:last-child {
  margin-bottom: 0;
}

/* Reverse layout for Vision block (image left, content right) */
.mv-block-reverse {
  direction: ltr; /* Flips column order */
}

.mv-block-reverse .mv-content,
.mv-block-reverse .mv-image-wrapper {
  direction: ltr; /* Restore text direction inside */
}

/* ===== CONTENT SIDE ===== */
.mv-content {
  display: flex;
  flex-direction: column;
}

/* ===== HEADING ===== */
.mv-heading {
  font-size: 36px;
  line-height: 125%;
  color: #181c20;
  font-weight: 700;
  margin: 0 0 24px 0; /* 24px gap below heading */
}

/* ===== DESCRIPTION ===== */
.mv-desc {
  font-size: 18px;
  line-height: 150%;
  color: #3e4a3c;
  margin: 0 0 24px 0; /* 24px gap below description */
}

/* ===== CHECKLIST ===== */
.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-list-item {
  display: flex;
  align-items: center;
  gap: 12px; /* 12px gap between icon and text */
}

.mv-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-list-text {
  font-size: 15px;
  line-height: 25.6px;
  color: #181c20;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

/* ===== QUOTE BLOCK ===== */
.mv-quote {
  margin: 0;
  padding: 24px; /* 24px padding all sides */
  border-left: 4px solid #006e25; /* Green left border */
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 16px;
  line-height: 150%;
  color: #181c20;
}

/* ===== IMAGE SIDE ===== */
.mv-image-wrapper {
  width: 100%;
}

.mv-img-placeholder {
  width: 100%;
  height: 380px;
  background-color: #b5c9b7; /* Placeholder color */
  border-radius: 20px;

  /* Drop shadow as specified */
  box-shadow:
    0px 8px 10px -6px #0000001a,
    0px 20px 25px -5px #0000001a;

  overflow: hidden;
}

/* Real image styles */
.mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .mv-block {
    gap: 40px;
    margin-bottom: 60px;
  }

  .mv-heading {
    font-size: 30px;
  }

  .mv-desc {
    font-size: 16px;
  }

  .mv-img-placeholder {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .mv-section {
    padding: 48px 0;
  }

  /* Stack content and image on tablet */
  .mv-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  /* Reset direction flip on mobile */
  .mv-block-reverse {
    direction: ltr;
  }

  /* On mobile, always show image below content */
  .mv-block-reverse .mv-image-wrapper {
    order: 2;
  }

  .mv-block-reverse .mv-content {
    order: 1;
  }

  .mv-img-placeholder {
    height: 280px;
  }

  .mv-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .mv-section {
    padding: 40px 0;
  }

  .mv-heading {
    font-size: 24px;
  }

  .mv-desc {
    font-size: 15px;
  }

  .mv-img-placeholder {
    height: 220px;
  }

  .mv-quote {
    padding: 16px;
    font-size: 14px;
  }

  .mv-list-text {
    font-size: 14px;
    line-height: 22px;
  }
}
