/* Static v2 extras (v1 base in custom.css) */
.pepe-card .card:hover { transform: translateY(-2px); transition: transform 0.2s ease; }
.content-box {
  background-color: #F6F6F4;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Address page — full screen slideshow (e.g. tablet / live painting) */
.address-slideshow-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  align-items: center;
  justify-content: center;
}
.address-slideshow-overlay.address-slideshow-active {
  display: flex;
  flex-direction: column;
}
.address-slideshow-overlay .address-slideshow-img-wrap {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.address-slideshow-overlay .address-slideshow-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.address-slideshow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.6s ease;
}
.address-slideshow-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.address-slideshow-exit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s, opacity 0.5s ease;
}
.address-slideshow-exit:hover {
  background: rgba(255,255,255,0.3);
}
.address-slideshow-exit.address-slideshow-exit-faded {
  opacity: 0;
  pointer-events: none;
}

/* Card zoom bubble — full-screen view of single card (used on grid cards site-wide) */
.pepe-card-zoom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.35rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  color: #333;
  cursor: pointer;
  font-size: 0.7rem;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s;
}
.pepe-card-zoom-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #111;
}
.sub-data {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sub-data .pepe-card-zoom-btn {
  flex-shrink: 0;
}
