.hns-completed-projects {
  width: 100%;
  color: #fffcf5;
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-align: center;
}

.hns-completed-projects *,
.hns-completed-projects *::before,
.hns-completed-projects *::after {
  box-sizing: border-box;
}

.hns-completed-projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  margin-bottom: 34px;
}

.hns-completed-projects__item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #2b2a27;
  text-align: left;
}

.hns-completed-projects__item--large {
  grid-row: 1 / span 2;
}

.hns-completed-projects__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hns-completed-projects__item a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
}

.hns-completed-projects__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
}

.hns-completed-projects__item:hover img,
.hns-completed-projects__item:focus-within img {
  transform: scale(1.045);
}

.hns-completed-projects__item h3 {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  margin: 0;
  color: #fffcf5;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .hns-completed-projects__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 4px;
    margin-bottom: 28px;
  }

  .hns-completed-projects__item,
  .hns-completed-projects__item--large {
    height: 188px;
    grid-row: auto;
  }

  .hns-completed-projects__item h3 {
    right: 16px;
    bottom: 12px;
    left: 16px;
    font-size: 12px;
  }

}
