.collage-fullscreen-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;

  
}

.collage-fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-out;
}

.collage-zoomed {
  cursor: grab;
}

.collage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: white;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  cursor: pointer;
  user-select: none;
  z-index: 10000;
}

.collage-prev {
  left: 20px;
}

.collage-next {
  right: 20px;
}

.collage-arrow:hover {
  color: #ffcc00;
}

.collage-caption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: white;
  font-size: 14px;
  background: rgba(0,0,0,0.8);
  padding: 5px 8px;
  border-radius: 4px;
  max-width: 80%;
  word-wrap: break-word;
  z-index: 10001; /* above image */
  pointer-events: auto; /* don’t block clicks */
}

.collage-caption a {
  color: white;          /* force links to be white */
  text-decoration: none; /* optional: remove underline */
}

.collage-caption a:hover {
  color: #ffcc00;        /* optional: highlight on hover */
}

.collage-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.caption-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
}

.caption-post,
.caption-model {
  font-weight: bold;
  color: white;
  padding-right: 6px;
  white-space: nowrap;
}

.caption-post {
  padding-left: 13px;
}

.caption-post-link,
.caption-model-link {
  color: white;
  text-decoration: none;
}

.caption-post-link:hover,
.caption-model-link:hover {
  color: #ffcc00;
}
