.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 40px 33px;
  margin: 0 auto;
  max-width: 1400px;
}
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card > a {
  display: block;
}
.project-card > a > img {
  width: 100%;
  height: 343px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.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: 768px) {
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 991px) {
}
@media screen and (min-width: 1150px) {
  .project-card__prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
