.project-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .project-cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }   
}

@media (min-width: 992px) {
  .project-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-card {
  width: auto;
  height: 200px;
  padding: 20px;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 15px;
  border: 2px solid var(--wp--preset--color--theme-blue);

}
.project-card h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--wp--preset--color--theme-blue);

  transition: all 0.2s ease-in;
}
.project-card:hover {
  cursor: pointer;
}
.project-card:hover h3 {
  /*transform: translateX(-8px);*/
}
.hidden-card {
  display: none;
}
.project-cards-show-more-btn {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background: var(--wp--preset--color--theme-blue);
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.project-cards-show-more-btn:hover {
  background: var(--wp--preset--color--theme-blue);
}