.iboost-other-projects {
  width: 100%;
  padding-bottom: 90px;
  box-sizing: border-box;
}
.iboost-other-projects__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.iboost-other-projects__heading {
  margin: 0 0 48px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.iboost-other-projects__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.iboost-project-card {
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}
.iboost-project-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 0.95/1;
  overflow: hidden;
  background: #eee;
}
.iboost-project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.iboost-project-card:hover .iboost-project-card__media img {
  transform: scale(1.035);
}
.iboost-project-card__placeholder {
  width: 100%;
  height: 100%;
  background: #e7e7e7;
}
.iboost-project-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px;
  box-sizing: border-box;
  background: rgba(40, 32, 27, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.iboost-project-card__title {
  margin: 0;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #fff !important;
}
.iboost-project-card__type {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff !important;
  opacity: 1;
}
.iboost-project-card__type::before {
  content: "";
  display: none;
}
@media (max-width: 1050px) {
  .iboost-project-card {
    flex-basis: calc(50% - 18px);
  }
}
@media (max-width: 700px) {
  .iboost-other-projects {
    padding: 65px 20px;
  }
  .iboost-other-projects__heading {
    margin-bottom: 34px;
  }
  .iboost-other-projects__cards {
    gap: 26px;
  }
  .iboost-project-card {
    flex-basis: 100%;
    min-width: 0;
  }
  .iboost-project-card__meta {
    padding: 24px 24px 22px;
    min-height: 120px;
  }
}
