/* =========================
   CHAMPIONS PAGE — HERO
========================= */

.ch-hero{
  background:#eef1f1; /* light grey like screenshot */
  padding: 75px 0 70px;
  text-align:center;
}

.ch-hero__inner{
  max-width: 920px;
  margin: 0 auto;
}

.ch-hero__title{
  margin:0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(35,31,32,.92);
}

.ch-hero__sub{
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.62);

}

.ch-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(35,31,32,.25);
  background:#fff;
  color: rgba(35,31,32,.78);
  font-weight: 800;
  font-size: 16px;
  text-decoration:none;
}

.ch-hero__btn:hover{
  background: rgba(255,255,255,.7);
}

/* =========================
   CHAMPIONS PAGE — PILLARS
========================= */

.ch-pillars{
  background:#ffffff;
  padding: 70px 0 90px;
  text-align:center;
}

.ch-pillars__title{
  margin:0;
  font-size: 28px;
  font-weight: 900;
  color: var(--green-hill);
  letter-spacing: -0.02em;
}

.ch-pillars__sub{
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.62);
  
}

/* 3 cards grid */
.ch-pillars__grid{
  margin-top: 40px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}

.ch-pillar{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 26px 18px 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.ch-pillar__icon{
  color: var(--green-hill);
  margin-bottom: 12px;
  display:flex;
  justify-content:center;
}

.ch-pillar__name{
  margin:0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--green-hill);
}

.ch-pillar__text{
  margin:0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.65);
 
}

/* Responsive */
@media (max-width: 900px){
  .ch-pillars__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}


/* =========================
   Champions Around the Globe (Exact Card)
========================= */

.chag-sec{
  padding: 80px 0 90px;
  background: #ffffff;
}

.chag-head{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.chag-title{
  margin:0;
  font-size: 28px;
  font-weight: 900;
  color: var(--green-hill);
  letter-spacing: -0.02em;
}

.chag-sub{
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.65);

}

/* The big card */
.chag-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 38px 44px;

  display:grid;
  grid-template-columns: auto 1px 1fr;
  gap: 34px;
  align-items:center;
}

/* Left content */
.chag-left{
  display:flex;
  align-items:flex-start;
  gap: 22px;
}

.chag-block{
  display:flex;
  flex-direction:column;
}

.chag-big{
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: #b7d334; /* lime */
}

.chag-big--dark{
  color: #0b5a4a; /* deep green number */
}

/* 39 label */
.chag-label{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #0b5a4a;
  text-transform: uppercase;
  line-height: 1.2;
}

/* vertical divider between 39 and 27 */
.chag-vline{
  width: 2px;
  height: 92px;
  background: rgba(11,90,74,.28);
  margin-top: 8px;
}

/* 27 COUNTRIES row */
.chag-row{
  display:flex;
  align-items:baseline;
  gap: 10px;
}

.chag-small{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #b7d334;
  text-transform: uppercase;
}

/* underline under 27 countries */
.chag-underline{
  width: 170px;
  height: 2px;
  background: rgba(11,90,74,.35);
  margin: 10px 0 10px;
}

/* money text */
.chag-money{
  font-size: 16px;
  font-weight: 900;
  color: #0b5a4a;
  line-height: 1.2;
}

/* dotted divider between left + map */
.chag-dotline{
  width: 1px;
  height: 120px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(11,90,74,.45) 0,
    rgba(11,90,74,.45) 2px,
    transparent 2px,
    transparent 7px
  );
  justify-self: center;
}

/* Map */
.chag-right{
  display:flex;
  justify-content:center;
  align-items:center;
}

.chag-right img{
  width: 100%;
  max-width: 620px;
  height: auto;
  display:block;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px){
  .chag-card{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
    text-align: center;
  }

  .chag-left{
    justify-content:center;
  }

  .chag-dotline{
    display:none;
  }

  .chag-right img{
    max-width: 720px;
  }
}
/* =========================
   CHAMPION STORIES (LAST)
========================= */

.cs-sec{
  padding: 70px 0 90px;
  background:#ffffff;
}

.cs-title{
  text-align:center;
  margin: 0 0 34px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .20em;
  color: var(--green-hill);
  text-transform: uppercase;
}

/* List */
.cs-list{
  display:flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

/* Item row */
.cs-item{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: start;
}

/* Photo */
.cs-photo{
  width: 120px;
  height: 190px;
  border-radius: 14px;
  overflow:hidden;
  background:#e9eef3;
  border: 1px solid rgba(0,0,0,.08);
}

.cs-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Header row */
.cs-head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cs-name{
  font-size: 16px;
  font-weight: 900;
  color: rgba(35,31,32,.9);
}

.cs-country{
  color: var(--green-hill);
  font-weight: 900;
}

/* Project line */
.cs-project{
  margin-top: 6px;
  font-size: 16px;
  color: rgba(35,31,32,.62);
 
  font-style: italic;
}

.cs-project-label{
  font-weight: 900;
  color: rgba(35,31,32,.75);
}

/* Description */
.cs-desc{
  margin: 10px 0 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.65);
  
}

/* Bullets */
.cs-bullets{
  margin: 0;
  padding-left: 18px;
}

.cs-bullets li{
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(35,31,32,.65);
  
}

.cs-bullets li::marker{
  color: var(--green-hill);
}

/* View details button */
.cs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(35,31,32,.25);
  background:#4a9443;
  color:white;
  font-weight: 800;
  font-size: 16px;
  text-decoration:none;
  white-space: nowrap;
}

.cs-btn:hover{
  background: #4a9443;
}

/* Responsive */
@media (max-width: 700px){
  .cs-item{
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 520px){
  .cs-item{
    grid-template-columns: 1fr;
  }
  .cs-photo{
    width: 84px;
    height: 84px;
  }
  .cs-head{
    justify-content: flex-start;
  }
}
.cs-item{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
}

.cs-photo{
  width: 150px;
  height: 180px;
  border-radius: 18px;
  overflow:hidden;
  background:#e9eef3;
}

.cs-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
}







/* =========================
   CHAMPIONS AROUND THE GLOBE — MOBILE
========================= */
@media (max-width: 520px){

  .chag-big{
    font-size: 56px;
  }

  .chag-label,
  .chag-small,
  .chag-money{
    font-size: 14px;
  }

  .chag-left{
    flex-direction: column;
    gap: 16px;
  }

  .chag-underline{
    width: 120px;
    margin: 8px auto;
  }

  .chag-card{
    padding: 22px 18px;
  }
}
/* Champions Around the Globe — make vline horizontal on mobile */
@media (max-width: 992px){
  .chag-vline{
    width: 120px;      /* horizontal length */
    height: 2px;       /* horizontal thickness */
    margin: 14px auto; /* center it */
  }

  /* optional: better spacing because left side becomes centered */
  .chag-left{
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}



/* =========================
   CHAMPION STORIES — MOBILE REFINEMENT
========================= */
@media (max-width: 520px){

  .cs-item{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cs-photo{
    width: 96px;
    height: 96px;
    margin-bottom: 6px;
  }

  .cs-name{
    font-size: 15px;
    line-height: 1.35;
  }

  .cs-project,
  .cs-desc,
  .cs-bullets li{
    font-size: 14px;
    line-height: 1.6;
  }

  .cs-head{
    gap: 10px;
  }

  .cs-btn{
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* =========================
   CHAMPION STORIES — BUTTON TO BOTTOM (MOBILE ONLY)
========================= */
@media (max-width: 520px){

  .cs-content{
    position: relative;
    padding-bottom: 56px; /* reserve space for button */
  }

  .cs-btn{
    position: absolute;
    bottom: 0;
    left: 0;              /* align left */
    
    width: auto;          /* ✅ NOT full width */
    display: inline-flex;
    justify-content: center;

    margin: 0;
  }
}

/* =========================
   CHAMPION STORIES — FULL-WIDTH IMAGE (MOBILE ONLY)
========================= */
@media (max-width: 520px){

  /* Card layout already stacked */
  .cs-item{
    grid-template-columns: 1fr;
  }

  /* Make image container full width */
  .cs-photo{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;      /* nice landscape ratio */
    border-radius: 16px;
  }

  /* Image fills container */
  .cs-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 520px){
  .cs-photo{
    aspect-ratio: auto;  /* optional */
  }
  .cs-photo img{
    object-fit: contain;  /* ✅ no cropping */
    background: #e9eef3;  /* optional (fills empty space) */
  }
}










