/* ===== STORY CONTENT SECTION ===== */
.story-content-section {
  background-color: #ffffff;
  padding: 96px 0;
}

/* ===== STORY BLOCK ===== */
.story-block {
  text-align: center;
  max-width: 850px; /* Keeps text readable — not full width */
  margin: 0 auto; /* Centers the block */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px; /* 16px gap between heading and description */
}

/* ===== HEADING ===== */
.story-heading {
  font-size: 36px;
  line-height: 125%;
  letter-spacing: 0px;
  color: #181c20;
  font-weight: 700;
  margin: 0;
}

/* ===== DESCRIPTION ===== */
.story-desc {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #3e4a3c;
  margin: 0;
}

/* ===== GREEN DIVIDER ===== */
.story-divider {
  width: 96px;
  height: 4px;
  background-color: #006e25;
  border-radius: 50px;
  margin: 64px auto; /* 64px gap top and bottom, centered */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story-content-section {
    padding: 60px 0;
  }

  .story-heading {
    font-size: 28px;
  }

  .story-desc {
    font-size: 16px;
  }

  .story-divider {
    margin: 48px auto;
  }

  .story-block {
    max-width: 100%;
    padding: 0 8px;
  }
}

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

  .story-heading {
    font-size: 24px;
  }

  .story-desc {
    font-size: 15px;
  }

  .story-divider {
    margin: 40px auto;
    width: 72px;
  }
}
