.three-col-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.internal-col-section {
  margin-bottom: 80px;
}




.custom-container {
  max-width: 1280px;
  margin: auto;
}

.section-small-heading {
  font: 700 18px / 22px var(--font-helvetica-neue);
  text-transform: uppercase;
  color: rgb(0, 103, 127);
  margin-block: 0px 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 23px;
}

.three-col-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-grid .post-image {
  width: 100%;
  max-height: 250px;

}

img {
  max-width: 100%;
}

.font-400-20-797A7D {
  font: 400 20px / 1.5 var(--font-helvetica-neue);
  color: rgb(121, 122, 125);
}

.font-500-20-222 {
  font: 500 20px / 1.5 var(--font-helvetica-neue);
  color: rgb(34, 34, 34);
}

.read-more-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  margin-top: 25px;
}

.font-500-20-222 h3 {
  font: 400 20px / 1.5 var(--font-helvetica-neue);
  color: #00677F
}

@media screen and (max-width:768px) {

  /*  3 section layout */
  .internal-col-section .section-small-heading {
    font: 700 16px/24px var(--font-helvetica-neue);
  }

  .internal-col-section .font-500-20-222 {
    font: 400 16px/24px var(--font-helvetica-neue);
  }

  .internal-col-section .read-more-btn-wrapper img {
    display: none;
  }

  .internal-col-section .read-more-btn-wrapper a {
    color: #e71316;
  }

  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .news-grid .post-image {
    max-height: 100%;

  }

}