/**
 * Push
 */

.push {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  background-color: var(--color-primary-xlight);
  border-radius: 5px;
  color: var(--color-neutral-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  margin: 0.5rem 0;
}
.push::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../../images/push/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.1s;
}
.push:hover {
  text-decoration: none;
}
.push:hover::after {
  transform: translateX(5px);
}
.push__text {
  flex: 1;
}
