.gallery-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 72px clamp(16px, 6.7vw, 96px) 96px;
  background: #fff;
}

.ba-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ba-tab {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid #e3e7ea;
  background: #fff;
  color: #6b7680;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ba-tab--active {
  border: 1.5px solid #1a6df5;
  color: #1a6df5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 24px;
  width: 100%;
}

.gallery-case {
  display: flex;
  flex-direction: column;
  border: 1px solid #e3e7ea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.gallery-pair {
  position: relative;
  display: flex;
  aspect-ratio: 600 / 220;
}

.gallery-pair__shot {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.gallery-pair__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
}

.gallery-pair::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.22);
}

.gallery-pair--unlocked::after {
  display: none;
}

.gallery-pair--unlocked .gallery-pair__shot img {
  filter: none;
}

.chip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #0f2338;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.gallery-lock {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  color: #0f2338;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px 0 rgba(15,36,56,0.16);
  z-index: 1;
  white-space: nowrap;
}

.gallery-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px 18px;
}

.gallery-meta p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #171b1e;
}

.gallery-meta p:last-child {
  font-size: 13px;
  font-weight: 400;
  color: #6b7680;
}

@media (max-width: 900px) {
  .gallery-list {
    padding: 48px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
