/* Site-wide: images and videos can't be selected or long-press-saved */
img,
video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.protected-gallery,
.protected-gallery * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.protected-card {
  position: relative;
  overflow: hidden;
}

.protected-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  touch-action: manipulation;
}

.protected-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.protected-card::after {
  content: "Vastushilpa Architects";
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
