.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.projects-grid > div {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  min-width: 0;
}
@media (max-width: 991px) {
  .projects-grid > div {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 576px) {
  .projects-grid > div {
    flex: 0 0 100%;
    width: 100%;
  }
}
.projects-grid .item-news {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin-right: 0;
}
.projects-grid .item-news.projects > .-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 64px;
  overflow: hidden;
}
.projects-grid .item-news.projects > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 72px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.projects-grid .item-news.projects > .btn.btn-link {
  align-self: flex-end;
  margin: auto 10px 15px 0;
}
.item-news.projects > a > .img-fluid {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.item-news.projects > a.-image-placeholder {
  display: block;
  height: 260px;
  background: #F2F2F2 url(../images/frontend/logo.svg) center center no-repeat;
}

