/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.post-block .heading,
.post-block .subheading {
  text-align: center;
}
.post-block .subheading {
  margin: 2.1rem auto 0;
  max-width: 64.6rem;
}
.post-block .posts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 7.2rem 0 0;
}
.post-block .post-item-card {
  background-color: #86B479;
  padding: 5.6rem 3.2rem;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}
.post-block .post-item-card .upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.post-block .post-item-card .post-icon {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 0 4.1rem;
}
.post-block .post-item-card .post-icon img {
  object-fit: cover;
}
.post-block .post-item-card .post-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 2.2rem;
  text-align: center;
}
.post-block .post-item-card .post-description {
  color: #fff;
  text-align: center;
  margin: 0 0 6rem;
}

.color-contrast .post-block .post-item-card {
  background-color: #99cf8b;
}
.color-contrast .post-block .post-item-card .post-title,
.color-contrast .post-block .post-item-card .post-description {
  color: #283725;
}

@media (max-width: 768px) {
  .post-block .subheading {
    margin: 1.8rem auto 0;
  }
  .post-block .posts-container {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin: 7rem 0 0;
  }
  .post-block .post-item-card {
    padding: 4.6rem 2.5rem;
  }
  .post-block .post-item-card .post-icon {
    width: 5.2rem;
    height: 5.2rem;
    margin: 0 0 2.1rem;
  }
  .post-block .post-item-card .post-icon svg {
    width: 5.2rem;
    height: 5.2rem;
  }
  .post-block .post-item-card .post-title {
    font-size: 2rem;
    margin: 0 0 1.8rem;
  }
  .post-block .post-item-card .post-description {
    color: #fff;
    text-align: center;
    margin: 0 0 4rem;
  }
}