/* ===== ABOUT PAGE — Store Story ===== */
/* Member-Owned Coop styles live in main.css (shared with the home page). */

/* ---------- STORE STORY (Umbraco content) ---------- */
.about-story {
  padding: 40px 20px 0;
}

.about-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Typography for this h2 now comes from .section-title in main.css. */
.about-story__text h2 {
  margin: 0 0 20px;
}

.about-story__text h3 {
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d4288;
  margin: 28px 0 12px;
  line-height: 1.3;
}

/* Scoped rich text normalization */
.about-story__content {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.about-story__content p {
  margin: 0 0 12px;
}

.about-story__content p:last-child {
  margin-bottom: 0;
}

.about-story__content ul,
.about-story__content ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.about-story__content a {
  color: #1d4288;
  text-decoration: underline;
}

.about-story__content a:hover {
  color: #3eb049;
}

/* Optional CTA link */
.about-story__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d4288;
  text-decoration: none;
  transition: gap 200ms ease, color 200ms ease;
}

.about-story__link:hover {
  gap: 12px;
  color: #3eb049;
  text-decoration: none;
}

/* Images */
.about-story__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-story__img {
  border-radius: 12px;
  overflow: hidden;
}

.about-story__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Mobile: let images render at their natural aspect ratio so nothing crops. */
@media (max-width: 767px) {
  .about-story__img img {
    height: auto;
    object-fit: contain;
  }
}

/* ---------- RESPONSIVE ---------- */
/* Member-Owned Coop responsive rules live in main.css alongside the base styles. */

@media (min-width: 768px) {
  .about-story {
    padding: 56px 40px 0;
  }

  .about-story__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .about-story__images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-story__img img {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .about-story__img img {
    height: 300px;
  }
}
