.story-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.story-hero .row {
  max-width: 1560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-hero__content {
  max-width: 650px;
  color: #fff;
}

.story-hero__eyebrow {
  color: var(--Red, #ed1c24);

  /* Section Title */
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  margin-bottom: 30px;
}

.story-hero__title {
  color: #fff;

  /* H1 */
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.story-hero__text {
  color: #fafbfc;

  /* P */
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.story-content .row,
.mission-vision .row {
  max-width: 1560px;
  margin: 0 auto;
}

.story-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps desc vertically centered */
  gap: 40px;
  margin-bottom: 30px;
}

.story-content__title {
  max-width: 650px;
}

.story-content__title .red_text {
  display: inline-block;
  color: #ed1c24;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.story-content__h2 {
  margin: 0;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 700;
  line-height: normal;
}

.story-content__desc {
  max-width: 650px;
}

.story-content__desc p {
  margin: 0;
  color: #4a4a4a;
  font-family: Lato;
  font-size: 16px;
  line-height: 24px;
}

/* =========================
  STORY CONTENT – 2 + 1 IMAGES
========================= */

.story-content__media {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.story-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
}

/* 2 columns wide */
.story-media--wide {
  grid-column: span 2;
}

/* 1 column wide */
.story-media--narrow {
  grid-column: span 1;
}

.story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* keep a nice consistent “card” height like the reference */
.story-content__media .story-media {
  height: 500px;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 991px) {
  .story-content__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-media--wide {
    grid-column: 1 / -1; /* wide becomes full width on tablet */
  }

  .story-content__media .story-media {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .story-content__media {
    grid-template-columns: 1fr;
  }

  .story-content__media .story-media {
    height: 260px;
  }
}

/* =========================
  MISSION & VISION
========================= */

.mission-vision {
  background: #151515; /* dark section like reference */
}

.mission-vision__header {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mission-vision__title .red_text {
  display: inline-block;
  color: #ed1c24;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.mission-vision__h2 {
  margin: 0;
  color: #fff;
  font-family: Poppins;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  line-height: normal;
}

/* LOWER GRID */
.mission-vision__lower {
  display: flex;
  gap: 150px;
  justify-content: space-between;
}

/* LEFT IMAGE */
.mission-vision__media {
  border-radius: 14px;
  overflow: hidden;
}

.mission-vision__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 600px; /* ensures it feels like the reference */
}

/* RIGHT CONTENT */
.mission-vision__content {
  color: #fff;
  position: relative;
  top: 95px;
}

.mission-vision__lead {
  margin: 0 0 100px;
  max-width: 650px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.mission-vision__blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-block h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.mv-block p {
  margin: 0;
  max-width: 650px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 991px) {
  .mission-vision__lower {
    grid-template-columns: 1fr;
  }

  .mission-vision__media img {
    min-height: 320px;
  }

  .mission-vision__content {
    padding: 0;
  }
}

/* =========================
  CORE VALUES (CARDS)
========================= */

.core-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.core-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 210px;
}

.core-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #151515;
  margin-bottom: 16px;
}

.core-card__title {
  margin: 0 0 20px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.core-card__desc {
  margin: 0;
  color: #4a4a4a;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Responsive */
@media (max-width: 1199px) {
  .core-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .core-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .core-card {
    padding: 22px 18px;
  }
}
