/* ============ Gallery Page ============ */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.full-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.full-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.full-gallery-item:hover img { transform: scale(1.05); }
.full-gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,32,64,.55);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .25s;
}
.full-gallery-item:hover .overlay { opacity: 1; }
.full-gallery-item .overlay span { color: #fff; font-weight: 600; font-size: .95rem; }
