/* ─── About Story ───────────────────────────────────────────────── */
.mk-about-story {
  background-color: var(--cream);
  padding-block: var(--space-24);
}

.mk-about-story__inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.mk-about-story__text-col {
  flex: 1;
  min-inline-size: 0;
}

.mk-about-story__divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block-end: var(--space-5);
}

.mk-about-story__divider-line {
  inline-size: 90px;
  block-size: 1px;
  background-color: var(--gold);
}

.mk-about-story__desc {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.9;
  max-inline-size: 42ch;
  margin-block-end: var(--space-6);
}

.mk-about-story__photo-col {
  flex: 1.15;
  min-inline-size: 0;
}

.mk-about-story__photo {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ─── Values section ────────────────────────────────────────────── */
.mk-about-values {
  background-color: var(--green-900);
  padding-block: var(--space-24);
}

/* .mk-why-us__grid defaults to 5 columns (built for the homepage's 5
   cards); with only 4 values here that left an empty column and threw
   the row off-center, so it's pinned to 4 for this section. */
.mk-about-values .mk-why-us__grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── CTA band ──────────────────────────────────────────────────── */
.mk-about-cta {
  background-color: var(--cream);
  padding-block: var(--space-16);
}

.mk-about-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.mk-about-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--teal-700);
  max-inline-size: 32ch;
}

/* ─── Tablet ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* why-us.css switches its shared grid to 3 columns here, which would
     leave 4 values unbalanced (3 + 1 alone); 2x2 stays centered. */
  .mk-about-values .mk-why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mk-about-story__inner {
    flex-direction: column;
    gap: var(--space-8);
  }

  .mk-about-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}
