/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
.document-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 1023px) {
  .document-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.document-cards .wp-block-post {
  width: 33.3333333333%;
  margin-block-start: unset;
  display: flex;
}
@media (max-width: 1440px) {
  .document-cards .wp-block-post {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .document-cards .wp-block-post {
    width: 100%;
  }
}
.document-cards .wp-block-post .document-card {
  background-color: rgba(45, 88, 122, 0.831372549);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 15px);
  margin-bottom: 30px;
}
.document-cards .wp-block-post .document-card .image-wrapper {
  max-height: 250px;
  min-height: 250px;
  height: 100%;
}
.document-cards .wp-block-post .document-card .image-wrapper .document-card__image, .document-cards .wp-block-post .document-card .image-wrapper img {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.document-cards .wp-block-post .document-card .document-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.document-cards .wp-block-post .document-card .document-card-title {
  padding: 15px;
}
.document-cards .wp-block-post .document-card .document-card-title a {
  text-decoration: none;
  font-size: var(--wp--preset--font-size--normal) !important;
  line-height: 1.3;
  color: white;
  display: inline-block;
}
.document-cards .wp-block-post .document-card .date {
  color: white;
  padding: 15px;
  font-size: var(--wp--preset--font-size--small) !important;
}
.document-cards .wp-block-post .document-card .pdf-button {
  background-color: #d8d8d8;
  padding: 15px;
}
.document-cards .wp-block-post .document-card .pdf-button a {
  color: #2D587A;
}/*# sourceMappingURL=block-news-release-posts.css.map */