.card-push-promotional {
  max-width: 389px;
  /* margin: 6rem 1rem; */
  box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.10);
  background-color: var(--color-secondary--4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  height: 100%;
}
.card-push-promotional::before {
  content: '';
  position: absolute;
  display: block;
  background-image: url('../../images/card-push-promo/BG.svg');
  width: 576px;
  height: 407px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -50px;
  left: -135px;
  z-index: -1;
  transform: rotate(165deg);
  transition: ease all 250ms;
}
.card-push-promotional::after {
  content: '';
  position: absolute;
  display: block;
  width: 87px;
  height: 87px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url('../../images/card-push-promo/arrow.svg');;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  bottom: -10px;
  right: -10px;
  transition: ease all 250ms;
}
.card-push-promotional:hover::after {
  scale: 1.2;
}
.card-push-promotional__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 25px 25px 0 25px;
  height: 100%;
}
.card-push-promotional__icon {
  display: flex;
  width: 41px;
  height: 41px;
  background-color: var(--color-secondary--1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  display: none;
}

.card-push-promotional:hover .card-push-promotional__icon img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(3deg) brightness(175%) contrast(101%);
}

.card-push-promotional__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.card-push-promotional__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.card-push-promotional__title p,
.card-push-promotional__text p {
  margin: 0;
}
.card-push-promotional .card-push-promotional__image img {
  transition: ease all 250ms;
}
.card-push-promotional__text {
  font-size: 18px;
  line-height: auto;
}
.card-push-promotional__text-secondary {
  margin-top: 10px;
}
.card-push-promotional__text-secondary strong {
  font-size: 18px;
}
.card-push-promotional__text-secondary *:not(strong) {
  font-size: 14px;
}
.card-push-promotional__image {
  display: flex;
  align-self: end;
}

.card-grid > a,
.card-grid > div {
  width: 100%;
}

@media all and (min-width: 1000px){
  .card-push-promotional {
    max-width: 794px;
    height: 326px;
    background-color: var(--color-secondary--1);
    transition: ease all 250ms;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
  .card-push-promotional:hover {
   background-color: var(--color-secondary--4);
  }
  .card-push-promotional:hover .card-push-promotional__image img {
    transform: scale(1.2) translateY(-12px);

  }
    .card-push-promotional:hover::before {
    transform: rotate(165deg) scale(1.3);
  }
  .card-push-promotional::before {
    top: -120px;
    left: -70px;
  }
  .card-push-promotional--extended::after {
    position: relative;
  }
  .card-push-promotional__wrapper {
    padding: 25px 0px 0 40px;
    gap: 0;
    flex-direction: row;
    align-items: center;
  }
  .card-push-promotional__text {
    max-width: 363px;
  }

  .card-push-promotional__title {
    white-space: nowrap;
  }
}


/**
 * Promo card
 **/
.promo-card-responsive {
  height: 100%;
  grid-row: span 2;
  max-width: 389px;
}

@media (min-width: 768px) {
  .promo-card-responsive {
    grid-column: span 2;
    grid-row: unset;
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .promo-card-responsive {
    grid-row: span 2;
    min-height: 400px;
  }
}
