/* ===========================
   FOOTPRINT EVOLUTION - GALLERY
   Auto Adjust Grid Layout
   =========================== */

.fe-gallery-wrap{
  padding:60px 0;
}

.fe-gallery-title{
  font-size:34px;
  font-weight:800;
  margin-bottom:8px;
  color:#ffffff;
}

.fe-gallery-sub{
  color:#b9b9d6;
  margin-bottom:25px;
}

/* ✅ AUTO ADJUST RESPONSIVE GRID */
.fe-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}

/* ✅ Gallery Card */
.fe-gallery-card{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:14px;
  transition:0.2s ease-in-out;
}

.fe-gallery-card:hover{
  transform:translateY(-3px);
  border-color:rgba(168,85,247,0.35);
}

/* ✅ IMAGE BOX AUTO ADJUST */
.fe-gallery-imgbox{
  width:100%;
  aspect-ratio: 4 / 3;      /* ✅ auto size */
  border-radius:14px;
  overflow:hidden;
  background:#0a0a12;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ IMAGE ALWAYS FIT */
.fe-gallery-imgbox img{
  width:100%;
  height:100%;
  object-fit:cover;         /* ✅ fills nicely */
  display:block;
}

/* ✅ Caption */
.fe-gallery-caption{
  margin-top:10px;
  font-weight:800;
  text-align:center;
  color:#ffffff;
  font-size:14px;
}
