.cards-images-grid {
  background-size: 2600px;
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (max-width: 900px) {
  .cards-images-grid {
    background-size: 0;
  }
}
.cards-images-grid__cards {
  display: flex;
  flex-wrap: wrap;
  border-right: var(--border-blue-5);
  border-bottom: var(--border-blue-5);
  background-color: var(--color-white);
}
.cards-images-grid__card {
  flex: 1 0 50%;
  position: relative;
  z-index: 1;
  border: var(--border-blue-5);
  border-right: none;
  border-bottom: none;
}
.cards-images-grid__card-image {
  position: absolute;
  z-index: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  object-fit: cover;
}
.cards-images-grid__card-content {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cards-images-grid__card-title {
  margin-bottom: 24px;
}
.cards-images-grid__card-text {
  margin-bottom: 8px;
}
.cards-images-grid__card-text:last-of-type {
  margin-bottom: 0;
}
.cards-images-grid__card-link {
  margin-top: 32px;
}
@media screen and (max-width: 900px) {
  .cards-images-grid__card-link {
    margin-top: 16px;
  }
}