.project-card__prices {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-card__price-tile {
  padding: 10px;
  text-align: center;
  border: 2px solid #000;
  background: #f4f4f4;
  font-size: 16px;
}

@media screen and (min-width: 1150px) {
  .project-card__prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
