.new_card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.25rem;
  justify-content: center;
}

.new_card {
  border-radius: 3.125rem 0 0 0;
  background: linear-gradient(180deg, #fd961a 0%, #000000 100%);
  padding: 1.25rem 1.25rem 3.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0rem 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
}

.new_card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0rem 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
}

.new_card__heading {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
}

.new_card__heading:after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 0.1875rem;
  background-color: #e21615;
}

.amount {
  font-size: 1.5rem;
  color: black;
  margin-top: 2.5rem;
}

.min {
  font-size: 3.75rem;
  color: black;
}

.max {
  font-size: 1.75rem;
  color: #333;
}

.card_list {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-top: 2.5rem;
  padding-left: 0;
}

.card_list li {
  margin: 0.625rem 0;
  color: white;
  list-style-type: none;
  font-size: 1.125rem;
}

.link-button {
  display: inline-block;
  text-decoration: none;
  border-radius: 1.25rem;
  background-color: #fd961a;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  margin-top: 2.5rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.link-button:hover {
  background-color: #222;
  color: #fd961a;
}

@media screen and (max-width: 48rem) {
  .new_card-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .new_card {
    padding: 1.25rem 1.25rem 3.125rem 1.25rem;
  }

  .min {
    font-size: 3rem;
    font-weight: 500;
  }

  .max {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .amount {
    font-size: 2.25rem;
  }

  .link-button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .card_list li {
    font-size: 1rem;
  }

  new_card__heading {
    font-size: 1.5rem;
  }
}