/* == Solutions Links == */
/* = Headings = */
.force-h2 {
  font-weight: var(--t2-font-weight) !important;
  font-size: var(--t2-font-size) !important;
  font-family: var(--t2-font-family) !important;
  line-height: var(--t2-line-height) !important;
  font-variant-numeric: var(--t2-font-variant-numeric) !important;
  margin-top: 0px !important;
  margin-bottom: var(--t2-margin-bottom) !important;
}
/* == Inner Blocks == */
.solutionsLinks__innerBlocks {
  margin-bottom: 32px;
}
.solutionsLinks__innerBlocks .block-column {
  display: block !important;
}
/* == Posts == */
.solutionsLinks__postWrapper {
  display: flex;
  gap: 32px;
}
.solutionsLinks__postWrapper .post-card {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .solutionsLinks__postWrapper {
    flex-direction: column;
  }
  .solutionsLinks__postWrapper .post-card {
    width: 100%;
  }
}

/* == Post Content == */
.solutionsLinks .post-card__image-wrapper {
  border-radius: 1.5rem;
}
/* = Header = */
.solutionsLinks .post-card__header {
  position: relative;
}
.solutionsLinks .post-card__header-meta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.25rem 0.5rem;
  line-height: 0;
  border-radius: 3.125rem;
  background-color: #f2f7f8;
}
.solutionsLinks .post-card__header-meta > span {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  font-variant-numeric: var(--subtitle-3-font-variant-numeric);
  color: #03262b;
}

.solutionsLinks .post-card__content {
  margin-top: 1rem;
}
.solutionsLinks .post-card__content-title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  font-variant-numeric: var(--title-1-font-variant-numeric);
  margin-top: 0;
  margin-bottom: var(--title-1-margin-bottom);
  margin-top: 0;
  color: #03262b;
  border-bottom: 0.125rem solid transparent;
  transition: 0.2s linear;
}

/* == Buttons == */
.solutionsLinks .post-card .wp-block-buttons {
  opacity: 0;
  transform: translateY(64px);
  transition: all ease-in 0.155s;
}
.solutionsLinks .post-card:hover .wp-block-buttons,
.solutionsLinks .post-card:focus-visible .wp-block-buttons {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 999.98px) {
  .solutionsLinks .post-card .wp-block-buttons {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* == Image Effects == */
.solutionsLinks .post-card__image-wrapper img {
  transform: scale(1);
  transition: all ease-in 0.3s;
}

.solutionsLinks .post-card:hover .post-card__image-wrapper img {
  transform: scale(1.1);
}
