.push-image {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding: 1rem;
  min-height: 400px;
}
.push-image__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.push-image__cta {
  position: relative;
  color: var(--color-neutral);

  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 28px */
}

.push-image__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

@media all and (min-width: 1600px){
  .push-image {
    padding: 2rem;
  }
}

.push-image--big-cta .cta {
  font-weight: 700;

  align-items: flex-start;

}
.push-image--big-cta .cta::after {
  flex-shrink: 0;
  background-image: url('../../images/arrow-diago.svg');
}
@media all and (min-width: 1600px){
  .push-image--big-cta .cta {
    max-width: 80%;
  }

  .push-image--big-cta .cta:has(.push-image__texts) {
    max-width: 299px;
  }
}

