/* =========================
   HERO – PROGRAMS
========================= */

.hero--programs{
  padding: 90px 0;
  background: #ffffff;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center; /* 🔑 THIS aligns image with text */
}

/* Left content */
.hero__content h1{
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__content .hero__sub{
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Right image */
.hero__image-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image{
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px){
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .hero__content .hero__sub{
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image{
    max-width: 460px;
  }
}
/* ===== GLOBAL YOUTH CLIMATE SUMMIT (Exact Card Look) ===== */

.summit-sec{
  background:#f3f5f6;
  padding: 70px 0 90px;
  text-align:center;
}

.summit-title{
  margin:0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing:-0.02em;
  color: rgba(35,31,32,.92);
}

.summit-sub{
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.65);

}

/* Card container */
.summit-card{
  margin: 34px auto 0;
  width: min(820px, 100%);
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  text-align:left;
}

/* FIX: force image to same height like reference */
.summit-image{
  height: 230px;          /* key: fixed height */
  overflow:hidden;
  background:#e9eef3;
}

.summit-image img{
  width:100%;
  height:100%;
  object-fit: cover;      /* crops tall images nicely */
  object-position: center;
  display:block;
}

/* Body spacing */
.summit-body{
  padding: 20px 26px 24px;
}

.summit-year{
  font-size: 12px;
  color: rgba(35,31,32,.55);
  font-weight: 700;
  margin-bottom: 10px;
}

.summit-heading{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  
}

.summit-text{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.70);
 
}

/* Button exactly like reference */
.summit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--green-hill);
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  font-size: 13px;
}

.summit-btn:hover{
  filter: brightness(0.95);
}

/* Responsive */
@media (max-width: 768px){
  .summit-body{ padding: 16px 16px 18px; }
  .summit-image{ height: 200px; }
}

/* =========================
   YOUTH CLIMATE CHAMPIONS (Exact)
========================= */

.ycc-sec{
  background:#f7f9fb;
  padding: 70px 0 90px;
  text-align:center;
}

.ycc-title{
  margin:0;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(35,31,32,.92);
}

.ycc-intro{
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(35,31,32,.65);
 
}

/* Center card */
.ycc-card{
  margin: 34px auto 0;
  width: min(440px, 100%);
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  text-align:left;
}

/* Image top */
.ycc-image{
  height: 170px;         /* like screenshot */
  overflow:hidden;
  background:#e9eef3;
}

.ycc-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* Body */
.ycc-body{
  padding: 18px 18px 20px;
}

.ycc-text{
  margin:0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.68);
  
}

/* Button */
.ycc-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 140px;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green-hill);
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  font-size: 12.5px;
}

.ycc-btn:hover{
  filter: brightness(0.95);
}

/* Responsive */
@media (max-width: 576px){
  .ycc-card{ width: min(340px, 100%); }
  .ycc-image{ height: 160px; }
}
/* =========================
   APPLICATION PROCESS
========================= */

.apply-sec{
  background:#ffffff;
  padding: 80px 0 100px;
}

.apply-title{
  text-align:center;
  margin:0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing:-0.02em;
  color: rgba(35,31,32,.92);
}

.apply-intro{
  margin: 16px auto 0;
  max-width: 760px;
  text-align:center;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(35,31,32,.65);

}

/* Layout */
.apply-grid{
  margin-top: 48px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}

/* Image */
.apply-image{
  border-radius: 12px;
  overflow:hidden;
  background:#e9eef3;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.apply-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Steps */
.apply-steps{
  display:flex;
  flex-direction:column;
  gap: 26px;
}

.apply-step{
  display:flex;
  gap: 18px;
  align-items:flex-start;
}

.step-num{
  font-size: 22px;
  font-weight: 900;
  color: var(--green-hill);
  min-width: 36px;
}

.apply-step h4{
  margin:0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(35,31,32,.92);
}

.apply-step p{
  margin:0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.68);
  
}

/* Responsive */
@media (max-width: 900px){
  .apply-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .apply-image{
    max-width: 520px;
    margin: 0 auto;
  }
}
/* =========================
   PROGRAMS — CTA IMPACT
========================= */

.cta-impact{
  background: #2f6f55; /* brand green */
  padding: 70px 0 80px;
  text-align:center;
}

.cta-impact__inner{
  max-width: 980px;
  margin: 0 auto;
}

.cta-impact__title{
  margin:0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing:-0.02em;
  color:#fff;
}

.cta-impact__text{
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.90);
  
}

.cta-impact__buttons{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-impact__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 8px;
  background:#fff;
  color: rgba(35,31,32,.85);
  font-weight: 800;
  font-size: 13px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.55);
}

.cta-impact__btn:hover{
  filter: brightness(0.96);
  transform: translateY(-1px);
  transition: transform .15s ease, filter .15s ease;
}

/* Responsive */
@media (max-width: 576px){
  .cta-impact__btn{
    width: 190px; /* keeps buttons uniform on small screens */
  }
}

/* Section wrapper */
.eld-section {
  padding: 80px 20px;
  background: #f7f9fb;
}

/* Container */
.eld-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.eld-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2933;
}

/* Intro paragraph */
.eld-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* Cards layout */
.eld-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

/* Individual card */
.eld-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Card headings */
.eld-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

/* Card meta text */
.eld-meta {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}

/* Card paragraphs */
.eld-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 12px;
}

/* Lists */
.eld-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

.eld-card ul li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 8px;
}

/* Tags (Card 1) */
.eld-tags {
  margin-top: 16px;
}

.eld-tags span {
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  margin: 4px 6px 0 0;
}
h2{
	 color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 26px;
}

/* CTA */
.eld-cta {
  text-align: center;
}

.eld-btn {
  display: inline-block;
  background: #2f6f55;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
 
}

.eld-btn:hover {
  background: #255a45;
}

/* Responsive */
@media (max-width: 992px) {
  .eld-cards {
    grid-template-columns: 1fr;
  }

  .eld-card {
    text-align: left;
  }
}
.summit-heading{
	color:#2f6b4f;
}


















