.posts-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 782px) {
  .posts-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.post-tile a {
  text-decoration: none;
}
.post-tile-content {
  padding: 15px 50px 10px 0;
}
.post-tile .wp-block-post-date a {
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #111329;
  margin-bottom: 25px;
  letter-spacing: 0;
}
.post-tile .wp-block-post-title a {
  font-size: 18px;
  line-height: 22px;
  color: var(--dark-gray-color);
  letter-spacing: 0;
}
.post-tile .wp-block-post-excerpt p a {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--yellow-color);
  margin-top: 15px;
  text-decoration: underline;
}
