section.overview {
      padding: 100px 20px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    section.overview h2 {
      /* font-family: 'Mansfield', serif; */
      font-weight: 600;
      font-size: 36px;
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.19) 93%, rgba(255, 255, 255, 0) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    section.overview p.intro {
      max-width: 750px;
      margin: 0 auto 60px;
      font-weight: 300;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
    }
    


    .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px; /* row gap, column gap */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: stretch;
  /* align-items: start; */
  /* 
  align
  ✅ keeps space on small screens */
}

/* Text styles */
h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}
.li-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.li-content strong {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #d8ff00;
}

.li-desc {
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;           /* Light weight */
  font-style: normal;         /* "Light" in Figma = font-weight:300, not font-style */
  font-size: 16px;
  /* line-height: 22px; */
  letter-spacing: 0;  
  line-height: 1.4;
}
ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  color: #ccc;
}

ul li {
  margin-bottom: 8px;
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;           /* Light weight */
  font-style: normal;         /* "Light" in Figma = font-weight:300, not font-style */
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;   
}

/* Card (Image Block) */
.case-study-card {
  border-radius: 12px;
  /* min-height: 250px; */
  background: #222;
  overflow: hidden;
  /* display: flex;          optional: keeps image responsive inside */
  align-items: stretch;
   flex-direction: column;
}

.case-study-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.text-block {
  max-width: 500px;
}


.text-block p {
  /* font-family: 'Lato', sans-serif; */
  font-weight: 300;           /* Light weight */
  font-style: normal;         /* "Light" in Figma = font-weight:300, not font-style */
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;          /* 0% = no spacing */
  /* text-transform: capitalize;  */
  margin-bottom: 30px;
}
/* Special case */
.full-width {
  grid-column: 2;
}
.custom-ul li::marker{
  color: #d8ff00;
  /* font-size: 20px; */
}
/* ================== RESPONSIVE ================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .grid {
    gap: 40px 25px;
    padding: 15px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Mobiles (≤ 900px) */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr; /* ✅ single column */
    gap: 30px;
  }

  .full-width {
    grid-column: auto; /* reset */
  }

  .text-block {
    max-width: 100%;
  }

  .case-study-card {
    min-height: 200px; /* shrink slightly for small screens */
  }
}

/* Small Mobiles (≤ 500px) */
@media (max-width: 500px) {
  .grid {
    gap: 20px;
    padding: 10px;
  }

  h2 {
    font-size: 18px;
  }

  p,
  ul li {
    font-size: 13px;
    line-height: 1.4;
  }

  .case-study-card {
    min-height: 180px;
    border-radius: 8px;
  }
}
