.gallery {
  column-count: 4;
  column-gap: 16px;
}

@media (max-width: 1024px) {
  .gallery { column-count: 3; }
}

@media (max-width: 768px) {
  .gallery { column-count: 2; }
}

@media (max-width: 480px) {
  .gallery { column-count: 1; }
}

.card {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #1e293b;
  position: relative;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto; /* 🔥 KEY for album style */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  font-size: 13px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
/* =========================
   TABS CONTAINER
========================= */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;              /* wrap nicely on desktop */
  margin-bottom: 24px;
}

/* =========================
   TAB BUTTON
========================= */
.tab-btn {
  padding: 10px 18px;

  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #cbd5f5;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

  border-radius: 4px;           /* 🔥 slight corner (not pill) */
  transition: all 0.25s ease;
}

/* Hover */
.tab-btn:hover {
  color: #fff;
  border-color: #38bdf8;
  background: rgba(56,189,248,0.08);
}

/* Active */
.tab-btn.active {
  color: #000;
  background: #FFD700;
  border-color:#FFD700;
}

/* Click feel */
.tab-btn:active {
  transform: scale(0.97);
}
@media (max-width: 768px) {
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 13px;
  }
}