/* ============================================================
   EQUIPMENT GALLERY — 시술 장비 그리드 (canonical variant)
   적용: skin/{complex,firming,whitening}, vitality
   whitening 페이지는 .wt-boost (AFTER-CARE BOOSTER)를 추가 인라인 보유
   ============================================================ */

.wt-gallery {
  padding: 100px 0;
  background: #FAFAF8;
}
.wt-gallery-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.wt-gallery-eyebrow {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--magenta);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.wt-gallery-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.wt-gallery-head p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
}
.wt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .wt-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .wt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.wt-gallery-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.wt-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.wt-gallery-photo {
  aspect-ratio: 1/1;
  background: #F7F7F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.wt-gallery-photo::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(0,0,0,0.08);
  border-radius: 6px;
}
.wt-gallery-photo span {
  position: relative;
  z-index: 1;
  padding: 4px 10px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.wt-gallery-meta {
  padding: 16px 18px 18px;
}
.wt-gallery-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.wt-gallery-cat {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}
