/* ===== ABOUT PAGE — Coop + Store Story ===== */

/* ---------- MEMBER OWNED COOP ---------- */
.about-coop {
  padding: 16px 20px 0;
}

.about-coop__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.about-coop__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1d4288, #3eb049);
  border-radius: 4px 0 0 4px;
}

.about-coop__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(29, 66, 136, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4288;
}

.about-coop__icon svg {
  width: 24px;
  height: 24px;
}

.about-coop__body {
  flex: 1;
  min-width: 0;
}

.about-coop__label {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #237a2e;
  margin-bottom: 4px;
}

.about-coop__title {
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.about-coop__text {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ---------- STORE STORY (Umbraco content) ---------- */
.about-story {
  padding: 48px 20px 0;
}

.about-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-story__text h2 {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.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;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {
  .about-coop__inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }

  .about-story {
    padding: 32px 20px 0;
  }
}

@media (min-width: 768px) {
  .about-coop {
    padding: 20px 40px 0;
  }

  .about-coop__inner {
    padding: 36px 40px;
  }

  .about-story {
    padding: 56px 40px 0;
  }

  .about-story__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .about-story__text h2 {
    font-size: 2rem;
  }

  .about-story__images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-story__img img {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .about-story__text h2 {
    font-size: 2.25rem;
  }

  .about-story__img img {
    height: 300px;
  }
}
