/* ================================
   PROJECT LOOP GRID
================================ */

.ih-project-grid {
  display: grid;
  gap: 20px;
}

.ih-project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  transition: all .25s ease;
}

.ih-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.ih-project-image {
  overflow: hidden;
  position: relative;
}

.ih-project-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.ih-project-card:hover .ih-project-image img {
  transform: scale(1.05);
}

.ih-project-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.95);
  color: #0f4f3a;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 3;
}

.ih-project-title {
  padding: 16px;
}

.ih-project-title h3,
.ih-project-title h2,
.ih-project-title {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  margin: 0;
}

/* remove extra meta/excerpt if present */
.ih-project-card .post-meta,
.ih-project-card .elementor-post__excerpt,
.ih-project-card .elementor-post__meta-data {
  display: none;
}

