.push-homepage-wrapper {
  margin: 0 auto;
  margin-top: -2rem;
  z-index: 9;
}

.push-homepage-wrapper__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.push-homepage-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-dark);
  color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 2rem 5rem 2rem 2rem;
  max-width: 462px;
  height: 100%;
  transition: background-color 0.3s ease;
}

.push-homepage-item:hover {
  background-color: #2a2a2a;
}

.push-homepage-item::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-image: url("../../images/push-homepage/arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.push-homepage-item__image {
  margin-bottom: 5px;
}

.push-homepage-item__image img {
  height: auto;
  display: block;
}

.push-homepage-item__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.75rem 0;
  text-transform: uppercase;
}

.push-homepage-item__text {
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 340px;
}

.push-homepage-item__text p{
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .push-homepage-item__title {
    font-size: 1.5rem;
  }
  .push-homepage-item__text {
    font-size: 1rem;
  }
  .push-homepage-wrapper__items {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .push-homepage-item {
    flex: 1 1 calc(33.333% - 1rem);
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .push-homepage-wrapper__items {
    gap: 2rem;
  }
  .push-homepage-wrapper {
    margin-top: -3rem;
  }
}

@media (min-width: 1400px) {
  .push-homepage-wrapper {
    margin-top: -5rem;
  }
}

@media (min-width: 1700px) {
  .push-homepage-wrapper {
    margin-top: -8rem;
  }
}


