.journey-footer .footer-mini{gap:16px}
/* Lightbox styles */
.memory-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox img {
  display: block;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  background: #080808;
}

.lightbox-close {
  position: fixed;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 0;
  transition: background 0.2s ease;
}

.lightbox-close:hover, .lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

@media (max-width: 600px) {
  .lightbox img {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
  }
}
