.elementor-9369 .elementor-element.elementor-element-ca09c1d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-3fc0d77 */.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* THIS IS THE CARD (because your card is <a>) */
.project-grid > a {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;

  box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.3s ease;
}

/* HOVER UPLIFT */
.project-grid > a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 45px rgba(0,0,0,0.18);
}

/* IMAGE FIXED HEIGHT */
.project-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.project-content {
  padding: 20px 35px;
  flex-grow: 1;
}

.project-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1c2c4c;
}

.project-content .location {
  font-size: 15px;
  margin: 6px 0 18px;
  color: #7a8599;
}

.project-info .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 15px;
}

.project-info .row span:first-child {
  font-weight: 600;
  color: #000;
}

.project-info .row span:last-child {
  color: #7a8599;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 767px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-img {
    height: 220px;
  }
}




.project-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 28px rgba(0,0,0,0.12);
}

.project-card::before {
  content: attr(data-badge);
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 9999;
  line-height: 1;
  pointer-events: none;
}/* End custom CSS */