.push-wrapper__items {
  display: flex;
  flex-direction: column;
  gap : 10px;
}

.push-wrapper__items .swiper-wrapper {
  padding: 16px 0;
}

.controls__wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

.push-wrapper__controls .swiper-button-prev,
.push-wrapper__controls .swiper-button-next {
  all: unset;
}

.push-wrapper__controls .swiper-button-prev::after,
.push-wrapper__controls .swiper-button-next::after {
  content: '';
  display: flex;
  width: 54px;
  height: 54px;
  padding: 4px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-m);
  background: var(--color-primary--2);

  background-image: url(../../images/icons/arrow-right--white.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.push-wrapper__controls .swiper-button-prev::after {
  transform: rotate(180deg);
}




/*.push__wrapper-items {
    display: flex;
    flex-direction: column;
    gap : 16px;
}

.push__wrapper-texts {
    display: flex;
    padding: 0 24px 17px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    text-transform: uppercase;
}



@media all and (min-width : 750px) {

    .push__wrapper-items {
        display: grid;
        justify-content: center;
        grid-template-areas: "a a"
                             "b c"
                             "d d";
    }

    .push__wrapper-items .push:nth-child(1) {
        grid-area : a;
    }
    .push__wrapper-items .push:nth-child(2) {
        grid-area : b;
    }
    .push__wrapper-items .push:nth-child(3) {
        grid-area : c;
    }
    .push__wrapper-items .push:nth-child(4) {
        grid-area : d;
    }
}

@media all and (min-width: 1000px) {
    .push__wrapper-items {
        grid-template-areas: "a b d"
                             "a c d";

        gap : 32px;
    }

}

@media all and (min-width: 1400px) {

    .push__wrapper-informations {
        position: relative;
    }

    .push__wrapper-texts {
        position: absolute;
        top : -5px;
        padding: 0 0px 17px 0px;
    }

    .push__wrapper {
        padding-top: 60px;
    }

    .push__wrapper-items {
        grid-template-columns: fit-content(509px) fit-content(297px) fit-content(402px);
    }

    .push__wrapper-items .push:nth-child(1) {
        max-height: 404px;
        align-self: end;
    }

}*/
