/* ========================================
   My Story — Content
   ======================================== */
.content-section {
  padding: 4rem 0;
}

/* Side-by-side story blocks */
.story-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.story-block--reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.story-text p {
  margin-bottom: 1rem;
}

.story-image {
  flex: 1;
}

.content-image {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Stats bar */
.story-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0 4rem;
  padding: 2.5rem 2rem;
  background: var(--color-surface);
  border-radius: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark-green);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

/* Closing section */
.story-closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.story-closing h2 {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .content-section {
    padding: 2.5rem 0;
  }

  .story-block,
  .story-block--reverse {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .story-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 1.75rem 0;
  }

  .story-stats {
    gap: 1.25rem;
  }
}
