@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
.wp-block-cards-related-links__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .wp-block-cards-related-links__wrap {
    justify-content: flex-start;
  }
}
.wp-block-cards-related-links__wrap > * {
  flex-grow: 1;
  width: 100%;
  max-width: calc(33.333% - 27px);
  aspect-ratio: 374/367;
}
@media (max-width: 1024px) {
  .wp-block-cards-related-links__wrap > * {
    max-width: calc(50% - 50px);
  }
}
@media (max-width: 800px) {
  .wp-block-cards-related-links__wrap > * {
    max-width: 360px;
  }
}
.wp-block-cards-related-links__card::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: absolute;
  display: block;
  opacity: 0;
  transition: all 0.24s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.wp-block-cards-related-links__card:hover::after {
  opacity: 1;
}
.wp-block-cards-related-links__card .card-title {
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  color: #FFF;
}
.wp-block-cards-related-links__card .card-title:after {
  font-size: 23px;
  position: relative;
  top: -3px;
  margin-left: auto;
}
.wp-block-cards-related-links__card[data-bg=has-bg]::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 89, 173, 0.88);
}
