.peer-to-peer-title{

 width: min(1200px, 92%);
    margin: 0 auto;
    margin-top: 60px;
}  
  
  .about-title{
    text-align: left;
    position: relative;
    margin: 0 0 10px;
    font-weight: 600;
    }

    .title-line span{
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;          
    height: 2px;
    background: #fc5412; 
    }

    .title-line{
    position: relative;
    width: 100%;
    height: 2px;
    background: #e6e6e6; 
    margin-bottom: 30px;
    }

.about-btn{
  text-decoration: none;
  border-radius: 50px;
}

.about-section-title{
     font-size: 25px;
    position: relative;
    font-weight: 600;
    margin-bottom: 5px;
}

/* benchmarking  */
.benchmarking-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.benchmarking-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.benchmarking-left {
    text-align: left;
}

/* Left content */
.benchmarking-title{
  color: #000;
}

.benchmarking-subtitle{
  margin: 0 0 10px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.benchmarking-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 620px;
}

.benchmarking-text strong{
  font-weight: 700;
  color: var(--brand-navy, #00253c);
}

.me-accordion-wrap{
    padding: 10px 0;
    background:#fff;
  }

  .me-accordion{
    /* width:min(1100px, 92%);
    margin:0 auto; */
    display:flex;
    flex-direction:column;
    gap:14px;
  }

    :root{
    --acc-gold:#f6b859;
    --acc-text:#111;
    --acc-muted:#5a5a5a;
    --acc-border:rgba(0,0,0,.08);
  }

  .me-acc-item{
    border: none;
    overflow: hidden;
    background: #fff;
  }

  /* Header button */
  .me-acc-btn{
        width: 100%;
    border: 0;
    cursor: pointer;
    background: var(--acc-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px;
    text-align: left;
  }

  .me-acc-title{
   font-size: 16px;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 1;
  }

  /* Chevron (CSS) */
  .me-acc-icon{
   width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    /* background: rgba(255, 255, 255, .18); */
    flex: 0 0 auto;
    position: relative;
  }
  .me-acc-icon::before{
    content:"";
    width:10px;
    height:10px;
    border-right:2px solid #fff;
    border-bottom:2px solid #fff;
    transform: rotate(45deg); /* down */
    transition: transform .22s ease;
    margin-top:-2px;
  }

  /* Panel animation */
  .me-acc-panel{
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease;
    background:#fff;
  }

  .me-acc-content{
    padding:18px 0px 20px;
    color:var(--acc-text);
    font-size:14px;
    line-height:1.7;
  }
  .me-acc-content p{
    margin:0 0 12px;
    color:var(--acc-muted);
  }
  .me-acc-content p:last-child{ margin-bottom:0; }

  /* Open state */
  .me-acc-item.is-open .me-acc-panel{
    /* JS sets exact height; this is just a fallback */
    max-height: 900px;
  }
  .me-acc-item.is-open .me-acc-icon::before{
    transform: rotate(-135deg); /* up */
    margin-top:2px;
  }

  /* Focus */
  .me-acc-btn:focus{
    outline:3px solid rgba(246,184,89,.35);
    outline-offset:2px;
  }

  /* Mobile tweaks */
  @media (max-width:600px){
    .me-acc-title{ font-size:14px; }
  }

/* Right image grid */
.benchmarking-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benchmarking-grid img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 992px){
  .benchmarking-inner{
    grid-template-columns: 1fr;
  }
  .benchmarking-grid img{
    height: 190px;
  }
}

@media (max-width: 480px){
  .benchmarking-grid{
    grid-template-columns: 1fr;
  }
  .benchmarking-grid img{
    height: 220px;
  }
}


/* ceo-summits-section  */
.ceo2-section{
}

.ceo2-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.ceo2-inner{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch; 
}

/* Left image */
.ceo2-image-inner{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.ceo2-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;    
  object-position: center;  /* crop nicely */
  display: block;
}

/* Right content */
.ceo2-title{
  color: var(--brand-navy, #00253c);
}

.ceo2-content p{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 660px;
}

.ceo2-content {
    text-align: left;
}

/* Responsive */
@media (max-width: 992px){
  .ceo2-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ceo2-image-inner{
    height: auto; 
  }

  .ceo2-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

  .ceo2-content p{
    max-width: none;
  }

  .ceo2-image {
    order: 2;
}
}



/* network-section  */
.network-section{
  background: #ffffff;
  /* padding: 70px 0; */
}

.network-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.network-inner{
   display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch; 
}

/* Left */
.network-title{
  color: var(--brand-navy, #00253c);
}

.network-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}


.network-left a{
  text-decoration: none;
   text-align: center;
}

.network-strong{
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #000;
}

.network-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 620px;
}

.network-list{
  margin: 8px 0 18px 18px;
  padding: 0;
}

.network-list li{
  font-size: 14px;
  line-height: 1.7;
  margin: 2px 0;
  color: #233746;
}

.network-btn{
     border-radius: 50px;
}

/* Right image */
.network-right{
  height: 100%;
}

/* wrapper controls cropping (no stretching) */
.network-image-inner{
  height: 100%;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

/* image scales without distortion */
.network-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;       
  object-position: center; 
  display: block;
}

/* Responsive */
@media (max-width: 992px){
  .network-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .network-text{
    max-width: none;
  }


}



/* learning-development sec  */
.ld-section{
}

.ld-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Grid ensures equal height columns */
.ld-inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch; /* 🔑 forces same height */
  gap: 30px;
}

/* LEFT IMAGE COLUMN */
.ld-image{
  position: relative;
}

/* Image wrapper fills full column height */
.ld-image-inner{
  height: 100%;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

/* Image scales correctly without distortion */
.ld-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;
  display: block;
}

/* RIGHT CONTENT COLUMN */
.ld-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  text-align: left;
  gap: 10px;
}

/* Typography */
.ld-title{
  color: var(--brand-navy, #00253c);
}

.ld-subtitle{
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #000;
}

.ld-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
}

.ld-list{
  margin: 8px 0 22px 18px;
  padding: 0;
}

.ld-list li{
  font-size: 14px;
  line-height: 1.7;
  margin: 3px 0;
}

.ld-inner a{
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
}


/*  Responsive: stack but keep image intact */
@media (max-width: 992px){
  .ld-inner{
    grid-template-columns: 1fr;
  }


  .ld-image {
    position: relative;
    order: 2;
}

.ld-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}
}

/* greenjam-section  */
.greenjam-section{
  background: #ffffff;
  /* padding: 70px 0; */
}

.greenjam-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.greenjam-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch; 
}

/* Left */
.greenjam-title{
  color: var(--brand-navy, #00253c);
}

.greenjam-left {
    text-align: left;
}

.greenjam-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 560px;
}

/* Right image */
.greenjam-image-inner{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.greenjam-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;       
  object-position: center;  
  display: block;
}

/* Responsive */
@media (max-width: 992px){
  .greenjam-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .greenjam-image-inner{
    height: 100%; 
  }

  .greenjam-text{
    max-width: none;
  }
}


/* peoplepulse-section  */
.peoplepulse-section{
  background: #ffffff;
}

.peoplepulse-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.peoplepulse-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch; 
}

/* Left */
.peoplepulse-left {
    text-align: left;
}

.peoplepulse-title{
  color: var(--brand-navy, #00253c);
}

.peoplepulse-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 640px;
}

/* Link card */
/* People Pulse link card (match reference) */
.peoplepulse-linkcard{
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 14px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  width: min(520px, 100%);
}

.peoplepulse-card-left{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.peoplepulse-card-title{
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.peoplepulse-card-title a{
  color: #2c3338;;
  text-decoration: none;
}

.peoplepulse-card-title strong{
  color: var(--brand-orange, #fc5412);
}

.peoplepulse-card-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(35,55,70,0.75);
}

.peoplepulse-card-meta a{
 color: #646970;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.peoplepulse-card-meta img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.peoplepulse-card-right{
  display: flex;
  align-items: center;
}

.peoplepulse-share{
  color: rgba(35,55,70,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.peoplepulse-share:hover{
  color: var(--brand-navy, #00253c);
}


/* Right image */
.peoplepulse-right{
  height: 100%;
}

.peoplepulse-image-inner{
  height: 100%;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.peoplepulse-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;       
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 992px){
  .peoplepulse-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }

.peoplepulse-image-inner img{
  height: auto;
  object-fit: cover;      
  object-position: center;
  display: block;
}

  .peoplepulse-text{
    max-width: none;
  }

  .peoplepulse-link {
    font-size: 14px;
}

.peoplepulse-card-title {
    font-size: 14px;
}

.peoplepulse-linkcard {
    padding: 10px;
    gap: 10px;
    width: auto;
}
}


/* appulse-section  */
.appulse-section{
}

.appulse-section .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.appulse-inner{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch; 
}

/* Left */
.appulse-image-inner{
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.appulse-image-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;        
  object-position: center;
  display: block;
}



/* Right */
.appulse-right{
  text-align: left;
}

.appulse-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.appulse-title{
  color: var(--brand-navy, #00253c);
}

.appulse-text{
  font-size: 14px;
  line-height: 1.9;
  color: #233746;
  max-width: 680px;
}

/* Appulse link card */
.appulse-linkcard{
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* width: min(520px, 100%); */
}

.appulse-linkcard a{
      text-decoration: none;
      color: #646970;
    font-weight: 600;
      display: flex;
      align-items: center;
     gap: 10px;
}

.appulse-card-left{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.appulse-card-title{
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-navy, #00253c);
  line-height: 1.25;
  margin-bottom: 10px;
}

.appulse-uk{
  color: var(--brand-orange, #fc5412);
}

.appulse-card-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(35,55,70,0.75);
}

.appulse-card-meta img{
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.appulse-card-right{
  display: flex;
  align-items: center;
}

.appulse-share{
  color: rgba(35,55,70,0.6);
  text-decoration: none;
}

.appulse-share:hover{
  color: var(--brand-navy, #00253c);
}

.appulse-btn{
     border-radius: 50px;
     text-align: center;
     margin-top: 20px;
    text-decoration: none;
}

.appulse-card-title a{
 text-decoration: none;
 color: #2c3338;
}

/* Responsive */
@media (max-width: 992px){
  .appulse-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .appulse-text{
    max-width: none;
  }

  .appulse-left{
 order: 2; 
}

.appulse-linkcard {
    padding: 10px;
    gap: 10px;
    width: auto;
}

.appulse-card-title {
    font-size: 12px;
    font-weight: 700;
}
}
