/* ── Arrow Button ─────────────────────────────────────────── */

.btn-arrow-container {
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.btn-arrow {
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 5px;
    padding: 0.5em 1.5em;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    transition: letter-spacing 0.3s ease;
}

.btn-arrow:hover {
  letter-spacing: 2px;
}

.btn-arrow-icon {
  fill: var(--color-primary);
  position: absolute;
  pointer-events: none;
  width: 24px;
  right: 0;
  top: 25%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero-title {
  font-size: 60px;
  font-weight: 600;
}


/* ── Slide Image ──────────────────────────────────────────── */

.slide-image {
  border-radius: 24px;
  aspect-ratio: 10 / 6;
  overflow: hidden;
  flex: 0 0 55%;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .btn-group{
    gap: 15px;

  }
  
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0px;
    max-width: 460px !important;
}
  

/* ── Swiper Pagination ────────────────────────────────────── */

.swiper-pagination {
  text-align: center;
  padding: 20px 0 28px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0c8bf;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--color-secondary);
  width: 28px;
  border-radius: 5px;
}


/* ── Swiper Nav Arrows ────────────────────────────────────── */

.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #e0d8cf;
  border-radius: 50%;
  color: var(--color-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 35px;
  margin-left: 45px;
  transition: background 0.2s, border-color 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  font-weight: 700;
}


/* ── Ribbon / Stats ───────────────────────────────────────── */

.ribbon-section {
  background: var(--color-light);
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ribbon-item {
  position: relative;
  text-align: center;
  padding: 28px 12px 24px;
  border-right: 1px solid rgba(222, 56, 8, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.ribbon-item:last-child {
  border-right: none;
}

.r-num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.r-lbl {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-text);
}


/* ── About Section ────────────────────────────────────────── */

.about-section {
  background: var(--color-bg);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 35px;
    align-items: center;
}

.about-img-wrap {
  position: relative;
  height: 420px;
}

.ab-img-1 {
  width: 85%;
  height: 270px;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  border: 5px solid var(--color-white);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.ab-img-2 {
  width: 70%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 5px solid var(--color-white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.about-h2 {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

 .section-p{
    color: var(--color-muted) !important;
    font-size: 17.5px;
    font-weight: 500;
    word-spacing: 3px;
    line-height: 1.6;
}
.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.t-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-light);
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 20px;
  border: 1px solid rgba(222, 56, 8, 0.2);
}

.t-pill i {
  font-size: 13px;
}


/* ── CTA Section ──────────────────────────────────────────── */

.cta-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 1rem auto 5rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgb(0 0 0 / 87%) 0%,
      rgba(26, 26, 26, 0.4) 55%,
      rgba(26, 26, 26, 0.05) 100%
    ),
    url("../img/home-programs/cta-ngo.jpg"); background-size: cover;
  background-position: top;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 3rem 2rem;
}

.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.cta-btn span {
  color: var(--color-primary);
  transition: color 0.2s;
}

.cta-btn:hover span {
  color: var(--color-white);
}


/* ── Initiative Cards ─────────────────────────────────────── */

.initiatives-section {
  position: relative;
  overflow: hidden;
}

.info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 16px;
}

.initiative-card {
  background: #fff8f3;
  border-radius: 22px;
  padding: 50px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(254, 148, 26, 0.12);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.3s;
}

.initiative-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(222, 56, 8, 0.11);
  border-color: rgba(254, 148, 26, 0.28);
}

.card-icon-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 20px;
  position: relative;
  z-index: 1;
}

.card-icon-area svg {
  width: 100px;
  height: 100px;
  stroke: var(--color-secondary);
  fill: none;
  position: absolute;
  right: 0;
  filter: drop-shadow(0 4px 12px rgba(254, 148, 26, 0.2));
  transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.initiative-card:hover .card-icon-area svg {
  transform: scale(1.1);
}

.card-body-info {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.card-title-text {
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 330px;
  padding: 10px 0;
  font-weight: 500;
}

.initiative-card {
  position: relative; /* zaroori, overlay ke liye */
}

/* Hover overlay — image + title + button */
.card-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 0.4s ease, transform 0.5s ease, visibility 0.4s;
  z-index: 3;
}

.card-bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:linear-gradient(to top, rgb(20 16 14 / 55%) 0%, rgb(20 16 14 / 25%) 50%, rgba(20, 16, 14, 0.05) 100%);
}

.overlay-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px 24px;
}

.overlay-title {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.overlay-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.5px;
}

.overlay-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* Hover trigger: overlay dikhe */
.initiative-card:hover .card-bg-overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Hover pe icon + description hide ho jaye, sirf overlay dikhe */
.initiative-card:hover .card-icon-area,
.initiative-card:hover .card-body-info {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* ── Marquee ──────────────────────────────────────────────── */

.marquee-separator-bg {
  background: var(--color-bg);
  width: 100%;
}

.marquee-separator {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1.5px solid var(--color-light);
  border-bottom: 1.5px solid var(--color-light);
  background: var(--color-bg);
  width: 100%;
}

.marquee-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px 14px 22px;
  background: #2b2b2b;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-separator:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
}

.marquee-text {
  font-size: 20px;
  font-weight: 700;
  padding: 0 6px;
  color: var(--color-text);
  background-image: linear-gradient(to right, var(--color-primary) 0%, var(--color-secondary) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-clip: text;
  background-clip: text;
  cursor: default;
  transition: background-size 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.3s ease;
}

.marquee-item:hover .marquee-text {
  background-size: 100% 100%;
  color: transparent;
}

.marquee-sep {
  font-size: 22px;
  color: var(--color-secondary);
  opacity: 0.6;
  padding: 0 18px;
  line-height: 1;
}


/* ── News Cards ───────────────────────────────────────────── */
  .news-section {
    align-items: center; 
    justify-content: space-between;
    display: flex;
    margin-bottom :20px;
  }
  
.ngo-card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ngo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(222, 56, 8, 0.12);
  color: inherit;
}

.ngo-card--featured {
  flex-direction: column;
  height: 100%;
}

.ngo-card__img {
  flex-shrink: 0;
  overflow: hidden;
  background: #e2d9cf;
}

.ngo-card--featured .ngo-card__img {
  aspect-ratio: 16/10;
  width: 100%;
}

.ngo-card--side .ngo-card__img {
    width: 254px;
    height: 207px;
}

.ngo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ngo-card__body {
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.ngo-cat {
  font-size: 15px;
  font-weight: 600;
}

.ngo-cat--primary   { color: var(--color-primary); }
.ngo-cat--secondary { color: var(--color-secondary); }

.ngo-title-lg {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0 0;
}

.ngo-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  overflow: hidden;
}

.ngo-meta {
  font-size: 1rem;
  color: #5f5f5f;
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ── Story Cards ──────────────────────────────────────────── */


/* ===== PRINT MEDIA CARDS ===== */
.print-card {
    background: #fff8f3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.print-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .13);
}

.print-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 13px 13px 0 0;
    display: block;
} 
.print-content {
    padding: 8px 16px;
    display: flex;
    justify-content: center;
}

/*.view-article-btn {*/
/*    display: inline-block;*/
/*    color: var(--color-primary);*/
/*    font-weight: 600;*/
/*    font-size: 0.95rem;*/
/*    text-decoration: none;*/
/*    border-bottom: 2px solid transparent;*/
/*    transition: border-color 0.2s ease, color 0.2s ease;*/
/*}*/

/*.view-article-btn:hover {*/
/*    color: var(--color-primary-dark);*/
/*    border-bottom-color: var(--color-primary-dark);*/
/*}*/

/* ===== HOME GALLERY ===== */
.home-gallery {
    padding: 20px;
    background: #fff8f3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .13);
}

.home-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 13px;
    display: block;
    height: 380px;
}

/**/

/*.print-media-section,*/
/*.reports-section{*/
/*    background:#fff;*/
/*}*/

/*.print-card{*/
/*    background:#fff;*/
/*    border-radius:12px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 10px 30px rgba(0,0,0,.08);*/
/*}*/

/*.print-card img{*/
/*    width:100%;*/
/*    height:350px;*/
/*    object-fit:cover;*/
/*}*/

/*.print-content{*/
/*    padding:20px;*/
/*    text-align:center;*/
/*}*/

/*.view-article-btn {*/
/*    display:inline-block;*/
/*    color:var(--color-primary);*/
/*    font-size: 16px;*/
/*    border-radius:6px;*/
/*    text-decoration:none;*/
/*    font-weight:600;*/
/*}*/

/*.view-article-btn:hover {*/
/*    text-decoration:underline;*/
/*}*/

/* Print Media Header */
/*.print-media-header{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:space-between;*/
/*    margin-bottom:40px;*/
/*}*/

/*.view-all-btn{*/
/*    display:inline-flex;*/
/*    align-items:center;*/
/*    gap:8px;*/
/*    padding:10px 24px;*/
/*     background:var(--color-secondary);*/

/*    color:#fff;*/
/*    text-decoration:none;*/
/*   border-radius: 50px;*/
/*    font-size:14px;*/
/*    font-weight:600;*/
/*    transition:all .3s ease;*/
/*}*/

/*.view-all-btn:hover{*/
/*   background:var(--color-primary);*/
/*    color:#fff;*/
/*    transform:translateY(-2px);*/
/*}*/

/* Mobile */
@media (max-width:575px){

    .print-media-header{
        /*flex-direction:column;*/
        gap:15px;
        align-items:flex-start;
    }

    .view-all-btn {
        width: auto;
        justify-content: center;
    }
    
    .view-all-btn {
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}
}

/**/

/* responsive start */


/* ── Large Desktop (≤1400px) ──────────────────────────────── */

@media (max-width: 1400px) {
  .container {
    max-width: 1140px !important;
  }
  
  .slide-image {
    flex: 0 0 55%;
  }
  
  .btn-group{
    gap: 15px;

  }
  
  .swiper-button-prev, .swiper-button-next {
    margin-right: 35px;
    margin-left: 35px;
 }
    .card-title-text {
        font-size: 1.44rem;
        font-weight: 600;
        max-width: 180px;
    }
    .card-icon-area svg {
    width: 85px;
    height: 85px;
}
    
    
}


/* ── Laptop (≤1200px) ─────────────────────────────────────── */

@media (max-width: 1200px) {
  :root {
    --section-padding: 70px;
  }

  .container {
    max-width: 960px !important;
  }

  .section-title {
    font-size: 35px;
  }

  .section-p {
    font-size: 1.05rem;
    word-spacing: 1px;
  }

  .t-pill {
    font-size: 0.86rem;
    font-weight: 500;
    padding: 7px 10px;
    gap: 5px;
  }

  .hero-title {
    font-size: 45px;
  }

  .slide-image {
    flex: 0 0 50%;
  }

  .card-title-text {
    font-size: 1.43rem;
    font-weight: 500;
    max-width: 180px;
  }

  .card-icon-area svg {
    width: 80px;
    height: 80px;
  }

  .btn-arrow {
    font-size: 18px;
    font-weight: 500;
  }

  .btn-volunteer {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .btn-donate-now {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 5px;
  }
}


/* ── Tablet (≤992px) ──────────────────────────────────────── */

@media (max-width: 992px) {
  .container {
    max-width: 720px !important;
  }

  .hero-title {
    font-size: 45px;
  }

  .slide-inner {
    flex-direction: column !important;
  }

  .slide-image {
    flex: none;
    width: 100%;
    aspect-ratio: 4/3;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .r-num {
    font-size: 35px;
    font-weight: 600;
  }

  .r-lbl {
    font-size: 1rem;
    font-weight: 500;
  }

  .section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 5px;
  }
  .news-section {
    align-items: center; 
    justify-content: space-between;
    display: flex;
    margin-bottom :20px;
  }

  .section-p {
    font-size: 1.1rem;
    max-width: 100%;
    text-align: justify;
  }

  .section-desc {
    font-size: 1rem;
    max-width: 560px;
    margin: auto;
    text-align: center;
  }

  .trust-pills {
    justify-content: left;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap {
    height: 300px;
  }

  .ab-img-1 {
    height: 210px;
  }

  .ab-img-2 {
    height: 155px;
  }

  .info-panel {
    padding-right: 0;
    padding-bottom: 15px;
  }

  .card-icon-area svg {
    width: 75px;
    height: 75px;
  }

  .card-title-text {
    font-size: 1.3rem;
    font-weight: 500;
  }
  
  .btn-group{
    gap: 15px;

  }

   .btn-group {
        gap: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-description {
     font-size: 18px;
     text-align: center;
    }
   .hero-title {
        font-size: 45px;
        text-align: center;
    }
    
    
   .cta-section {
     margin: 1rem auto 1rem;
   }
    
}


/* ── Mobile (≤575px) ──────────────────────────────────────── */

@media (max-width: 575px) {
  :root {
    --section-padding: 60px;
  }

.hero-title:lang(en) {
    font-size: 28px;
    text-align: center;
    margin: 0px 0 3px;
}

.hero-title:lang(hi) {
    font-size: 36px;
    text-align: center;
     margin: 0px 0 3px;
}

 .hero-description:lang(hi) {
    text-align: center;
    font-size: 18.5px !important;
    line-height: 1.5;
    margin: 0px 0 5px;
 }

 .hero-description:lang(en) {
    text-align: center;
    font-size: 16px !important;
    line-height: 1.5;
    margin: 0px 0 5px;
 }
 
.section-title:lang(hi) {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
}
.section-title:lang(en) {
    font-size: 28px;
    text-align: center;
    margin: auto;
    font-weight: 500;
    max-width: 260px;
}

.section-p:lang(en) {
    font-size: 17px;
    margin-top: 15px;
    text-align: justify;
    line-height: 1.7;
}  
.section-p:lang(hi) {
    font-size: 19px;
    line-height: 1.7;
    margin-top: 7px;
    text-align: justify;
}
 
 
.t-pill:lang(en) {
    font-size: 14.5px;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    justify-content: center;
}  
.t-pill:lang(hi) {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    justify-content: center;
}   
.trust-pills {
   justify-content: center;
}

.section-title:lang(en){
    font-size: 30px;
    text-align: center;
    margin: auto;
    font-weight: 500;
    max-width: 260px;
}  
.section-title:lang(hi) {
    font-size: 32px;
    text-align: center;
    margin: auto;
    font-weight: 500;
    line-height: 1.6;
}

.section-desc:lang(en) {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}
.section-desc:lang(hi) {
    font-size: 18.5px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}
 
.btn-group {
   gap: 7px;
   justify-content: center;
   margin: 15px 0 0; 
}

  .swiper-pagination {
    padding: 0;
  }

  /* Ribbon */
  .ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ribbon-item {
    padding: 20px 10px 18px;
  }

  .ribbon-item:nth-child(even)              { border-right: none; }
  .ribbon-item:nth-child(3)                 { border-right: 1px solid rgba(222, 56, 8, 0.15); }
  .ribbon-item:nth-child(-n+4)              { border-bottom: 1px solid rgba(222, 56, 8, 0.15); }
  .ribbon-item:last-child:nth-child(odd)    { grid-column: 1 / -1; border-right: none; border-bottom: none; }

  .r-num {
    font-size: 30px;
    font-weight: 600;
  }

  .r-lbl {
    font-size: 1rem;
    font-weight: 600;
  }

  /* Typography */
  .section-title {
    font-size: 28px;
    text-align: center;
    margin: auto;
    font-weight: 500;
  }

  .section-p {
    font-size: 1.1rem;
    word-spacing: 3px;
    margin-top: 15px;
    text-align: justify;
  }

.section-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

  /* Trust Pills */
  .t-pill {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    justify-content: flex-start;
  }

  /* Buttons */
     .btn-volunteer {
        gap: 0;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 7px 12px !important;
        border: 1.9px solid var(--color-primary);
    }

    .btn-donate-now {
        gap: 5px;
        border-radius: 22px;
        padding: 7px 12px !important;
        font-size: 0.8rem;
        font-weight: 600;
    }

  .btn-donate-now svg {
    width: 16px;
    height: 16px;
  }

  /* Cards */
  .card-icon-area svg {
    width: 80px;
    height: 80px;
  }

  .card-title-text {
    font-size: 1.25rem;
    font-weight: 500;
  }

 .card-desc {
    font-size: 1rem;
    padding: 5px 0 0;
    text-align: left;
}

  .btn-arrow {
    font-size: 17px;
    font-weight: 600;
  }

  .btn-arrow-icon {
    top: 20%;
  }

  .initiative-card {
    padding: 28px 28px 30px;
  }

  /* Marquee */
  .marquee-separator {
    width: 100%;
  }

  .marquee-text {
    font-size: 22px;
    font-weight: 600;
    padding: 6px;
  }

  /* News Cards */
  .ngo-card {
    flex-direction: column;
  }

  .ngo-card--side .ngo-card__img {
    width: 100%;
    height: auto;
  }

  .ngo-desc {
    text-align: justify;
  }

  .ngo-meta {
    justify-content: flex-end;
  }

  .news-section {
    align-items: center; 
    justify-content: space-between;
    display: flex;
    margin-bottom :20px;
  }

  /* CTA */
  .cta-section {
    margin: 1rem auto 0;
    align-items: flex-end;
    background-image:
      linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.4) 55%, rgba(26, 26, 26, 0.05) 100%),
      url(https://give.do/blog/wp-content/uploads/2022/12/5-ngo-blog-banner.png);
    background-size: cover;
    background-position: top;
  }

  .cta-content {
    padding: 0;
    text-align: left;
  }

  /* Story Cards */
  .story-card {
    padding: 14px !important;
  }

  .story-card__body {
    padding: 1rem 0;
  }

  .story-card__img-placeholder,
  .story-card__img-placeholder img {
    height: 260px;
    border-radius: 20px 20px 0 0 !important;
  }

.new-heading {
    margin-right: auto !important;
    margin-left: 0;
    text-align: left;
    max-width: 165px;
}
   .news-section {
        align-items: center;
        justify-content: space-between;
        display: flex;
        margin-bottom: 20px;
        gap: 20px;
    }
}