/* ── GALLERY ── */

.cust-gallery-item {
  aspect-ratio: 1;
  background: var(--light);
  border-radius: 2px;
  overflow: hidden; position: relative; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.cust-gallery-item-inner {
  width: 100%; height: 100%;
  
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem; text-align: center;
  font-family: 'Noto Serif TC', serif; color: var(--red); opacity: 1;
  transition: opacity 0.3s;
}
.cust-gallery-item:hover .cust-gallery-item-inner { opacity: 0.8; }
.cust-gallery-item-inner span { font-size: 2.5rem; }
.cust-gallery-item-inner small { font-size: 0.65rem; letter-spacing: 0.08em; }

.cust-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,0.7);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.25s;
}
.cust-gallery-item:hover .cust-gallery-overlay { opacity: 1; }
