body { font-family: "Lexend", sans-serif; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.lightbox { display: none; position: fixed; inset: 0; z-index: 60; }
.lightbox.is-open { display: block; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(13, 10, 6, 0.75); }
.lightbox__content { position: relative; max-width: 960px; margin: 6vh auto; background: #f8f7f5; border-radius: 1.25rem; padding: 1.5rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 1rem; }
.dark .lightbox__content { background: #231a0f; }
.lightbox__image { width: 100%; border-radius: 1rem; grid-column: 2 / 3; max-height: 70vh; object-fit: contain; }
.lightbox__caption { grid-column: 2 / 3; text-align: center; font-size: 0.875rem; color: rgba(29, 21, 12, 0.7); }
.dark .lightbox__caption { color: rgba(229, 231, 235, 0.7); }
.lightbox__nav { width: 40px; height: 40px; border-radius: 9999px; border: 1px solid rgba(208, 111, 1, 0.2); color: #d06f01; background: rgba(208, 111, 1, 0.1); display: inline-flex; align-items: center; justify-content: center; }
.lightbox__nav--prev { grid-column: 1 / 2; }
.lightbox__nav--next { grid-column: 3 / 4; }
.lightbox__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 9999px; border: 1px solid rgba(208, 111, 1, 0.2); color: #d06f01; background: rgba(208, 111, 1, 0.12); display: inline-flex; align-items: center; justify-content: center; font-family: "Material Symbols Outlined"; font-size: 20px; }
.lightbox__nav, .lightbox__close { font-family: "Material Symbols Outlined"; font-size: 20px; }
@media (max-width: 768px) {
  .lightbox__content { grid-template-columns: 32px 1fr 32px; padding: 1rem; margin: 10vh 1rem; }
}
