.grid-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .grid-row-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-row-4 .grid-col {
  width: 100%;
}

.post-box {
  text-decoration: none;
  transition: 0.3s;
  padding: 12px 16px;
  background: #fff;
}
.post-box .post-image {
  width: 100%;
  height: 200px;
  position: relative;
  text-decoration: none;
}
.post-box .post-image img, .post-box .post-image svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.post-box .post-title {
  padding: 12px 0px;
  color: #0056b3;
  font-size: 25px;
  text-decoration: none;
}
.post-box .post-description {
  font-size: 16px;
  text-decoration: none;
}
.post-box .post-description p {
  font-size: 16px;
  text-decoration: none;
}
.post-box:hover {
  -webkit-box-shadow: 0px 0px 15px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 15px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 15px -9px rgba(0, 0, 0, 0.75);
  transform: translateY(-5%);
}

.section-title {
  padding: 24px 0px;
  position: relative;
  color: rgb(35, 61, 97);
  font-size: 34px;
  padding-bottom: 24px;
  font-weight: 400;
}
.section-title strong {
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24pt;
    padding-bottom: 32px;
  }
}
.section-title::after {
  content: "";
  width: 150px;
  height: 2px;
  background: rgb(239, 126, 34);
  top: -4px;
  left: 0;
  position: absolute;
}
.section-title.centered {
  text-align: center;
  margin: 0 auto;
}
.section-title.centered::after {
  content: "";
  width: 150px;
  height: 2px;
  background: rgb(239, 126, 34);
  top: unset;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

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