.latest-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  border-top: 6px #f3ab2e solid;
  position: relative;
  padding-top: 85px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .latest-posts {
    padding-top: 68px;
  }
}
@media (max-width: 768px) {
  .latest-posts {
    flex-direction: column; /* Stack cards vertically on smaller screens */
    max-width: 382px;
    margin: 28px auto; /* Center the content for narrow screens */
  }
}
.latest-posts .news-title {
  position: absolute;
  color: #000;
  padding: 0;
  top: 17px;
  left: 0;
  font-size: 28px;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .latest-posts .news-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.latest-posts .view-all-link {
  position: absolute;
  top: 17px;
  right: 0;
  color: #027979;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.latest-posts .latest-post-card {
  max-width: calc(50% - 22px); /* Adjust width to account for spacing, modify this based on your layout */
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  margin: 0; /* Adjust margins for middle cards if needed */
}
.latest-posts .latest-post-card:first-child {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .latest-posts .latest-post-card:first-child {
    margin-right: 0;
  }
}
.latest-posts .latest-post-card:last-child {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .latest-posts .latest-post-card:last-child {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .latest-posts .latest-post-card {
    max-width: 100%; /* Adjust width to account for spacing, modify this based on your layout */
    margin: 0;
  }
}
.latest-posts .latest-post-card .card-title {
  padding: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}
.latest-posts .latest-post-card .card-title a {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .latest-posts .latest-post-card .card-title {
    font-size: 20px;
    line-height: 25px;
  }
  .latest-posts .latest-post-card .card-title a {
    font-size: 20px;
    line-height: 25px;
  }
}
.latest-posts .latest-post-card .card-date {
  color: #027979;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}
.latest-posts .latest-post-card .module-body {
  position: relative;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.latest-posts .latest-post-card .module-body p {
  color: #000;
  font-size: 19px;
  line-height: 27px;
  padding-right: 20px;
  margin: 15px 0;
  font-weight: 400;
  display: -webkit-box; /* Enables the use of -webkit-line-clamp */
  -webkit-line-clamp: 2; /* Limits to 6 lines */
  -webkit-box-orient: vertical; /* Arranges content vertically */
  overflow: hidden; /* Ensures content exceeding 6 lines is hidden */
  text-overflow: ellipsis; /* This won't work directly here but is generally used for single line overflow control */
}
.latest-posts .latest-post-card .module-body ul li, .latest-posts .latest-post-card .module-body ol li {
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}
.latest-posts .latest-post-card .module-body .module-cta {
  color: #027979;
  font-size: 19px;
}
.latest-posts .latest-post-card .front-image {
  height: 188px;
  min-height: 188px;
  width: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=frontend.css.map */
