/* SECTION */
.soh-banner {
  padding: 120px 20px 80px;
 background: #ebe0f7; /* soft lavender */
  font-family: "Outfit", sans-serif;
  overflow: hidden;
}

/* CONTAINER */
.soh-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* CONTENT */
.soh-content {
  flex: 1;
  animation: fadeUp 1s ease;
}

/* BREADCRUMB */
.soh-breadcrumb {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 20px;
}

.soh-breadcrumb .sep {
  margin: 0 8px;
}

.soh-breadcrumb .active {
  color: #16a085;
  font-weight: 500;
}

/* TITLE */
.soh-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #1aa6b7, #28c76f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.soh-content p {
  font-size: 18px;
  color: #5f6f81;
  line-height: 1.7;
  max-width: 500px;
}

/* IMAGE */
.soh-image {
  flex: 1;
  text-align: right;
  animation: fadeRight 1.2s ease;
}

.soh-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .soh-container {
    flex-direction: column;
    text-align: center;
  }

  .soh-content p {
    margin: auto;
  }

  .soh-image {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .soh-content h1 {
    font-size: 36px;
  }

  .soh-content p {
    font-size: 16px;
  }

  .soh-banner {
    padding: 100px 15px 60px;
  }
}


/*featured story*/

/* SECTION */
.featured-story {
  padding: 100px 20px;
  background: #f7f9fb;
  font-family: "Outfit", sans-serif;
}

/* CONTAINER */
.fs-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.fs-image {
  position: relative;
  flex: 1;
}

.fs-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

/* BACKGROUND SHAPE */
.fs-bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #cfeee7;
  border-radius: 25px;

  /* push it outside like design */
  bottom: -25px;
  right: -25px;

  z-index: 1;
}

/* CONTENT */
.fs-content {
  flex: 1;
}

/* BADGE */
.fs-badge {
  display: inline-block;
  background: #e3f5f1;
  color: #1fa37a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* DATE */
.fs-date {
  display: block;
  font-size: 14px;
  color: #8a97a6;
  margin-bottom: 10px;
}

/* TITLE */
.fs-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d2b3a;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* TEXT */
.fs-content p {
  font-size: 17px;
  color: #5f6f81;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ACTIONS */
.fs-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* BUTTON */
.fs-btn {
  background: linear-gradient(90deg, #1aa6b7, #28c76f);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.fs-btn:hover {
  opacity: 0.9;
}

/* SHARE */
.fs-share {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7b8794;
}

.fs-share a {
  width: 35px;
  height: 35px;
  background: #eef2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  transition: 0.3s;
}

.fs-share a:hover {
  background: #1fa37a;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fs-container {
    flex-direction: column;
    text-align: center;
  }

  .fs-bg-shape {
    display: none;
  }

  .fs-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .fs-content h2 {
    font-size: 26px;
  }

  .featured-story {
    padding: 70px 15px;
  }
}

/* stories of hope*/


/* SECTION */
.stories-section {
  padding: 100px 20px;
  background: #f7f9fb;
  font-family: "Outfit", sans-serif;
}

/* TITLE */
.stories-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1d2b3a;
}

/* GRID */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.story-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
}

/* IMAGE */
.story-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

/* CONTENT */
.story-content {
  padding: 20px;
}

.story-date {
  font-size: 14px;
  color: #7b8794;
  display: block;
  margin-bottom: 10px;
}

.story-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d2b3a;
}

.story-content p {
  font-size: 15px;
  color: #5f6f81;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* READ MORE */
.read-more {
  color: #1fa37a;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.story-card:hover img {
  transform: scale(1.05);
}

/* LOAD BUTTON */
.stories-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.load-btn {
  padding: 12px 28px;
  border: 2px solid #1fa37a;
  color: #1fa37a;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.load-btn:hover {
  background: #1fa37a;
  color: #fff;
}

/* SCROLL ANIMATION */
.story-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-title {
    font-size: 26px;
  }
}


/*cta*/

/* SECTION */
.share-story {
  padding: 80px 20px;
  background: #f4f6f8;
  display: flex;
  justify-content: center;
}

/* BOX */
.share-box {
  max-width: 1000px;
  width: 100%;
  background: linear-gradient(135deg, #1fa37a, #1c9c7a);
  border-radius: 30px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;

  /* soft shadow */
  box-shadow: 0 20px 60px rgba(31,163,122,0.25);
}

/* subtle glow effect */
.share-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  top: -100px;
  left: -100px;
  filter: blur(60px);
}

/* TITLE */
.share-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXT */
.share-box p {
  font-size: 18px;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* BUTTON */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 26px;
  background: #fff;
  color: #1fa37a;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* ICON */
.share-btn .icon {
  font-size: 16px;
}

/* HOVER */
.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .share-box {
    padding: 50px 20px;
  }

  .share-box h2 {
    font-size: 26px;
  }

  .share-box p {
    font-size: 16px;
  }
}