:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-soft: #141414;
  --text: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.56);
  --faint: rgba(247, 247, 247, 0.28);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.38);
  --card-shadow: 0 16px 16px -4px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.17);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f7f7f7;
  --panel: #ffffff;
  --panel-soft: #eeeeee;
  --text: #0a0a0a;
  --muted: rgba(10, 10, 10, 0.56);
  --faint: rgba(10, 10, 10, 0.26);
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.2);
  --shadow: rgba(0, 0, 0, 0.12);
  --card-shadow: 0 16px 22px -12px rgba(0, 0, 0, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  transition:
    background 0.24s ease,
    color 0.24s ease;
}

body.is-lightbox-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
}

.app-frame {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-left: 276px;
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 255, 255, 0.04), transparent 280px),
    var(--bg);
}

[data-theme="light"] .app-frame {
  background:
    radial-gradient(circle at 72% 10%, rgba(0, 0, 0, 0.04), transparent 280px),
    var(--bg);
}

.sidebar {
  position: fixed;
  top: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  width: 256px;
  flex-direction: column;
  gap: 16px;
  overflow: hidden auto;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  box-shadow: 0 20px 60px var(--shadow);
  backdrop-filter: blur(24px);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 42px;
  text-decoration: none;
}

.brand-logo {
  width: 160px;
  height: 42px;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.94;
}

.search-card,
.menu-item,
.filter-button,
.theme-switch,
.mobile-search,
.mobile-theme,
.result-item {
  border: 0;
  text-decoration: none;
}

.search-card {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  text-align: left;
}

.search-card:hover,
.search-card:focus-visible,
.menu-item:hover,
.menu-item:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active,
.theme-switch:hover,
.theme-switch:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

[data-theme="light"] .search-card:hover,
[data-theme="light"] .search-card:focus-visible,
[data-theme="light"] .menu-item:hover,
[data-theme="light"] .menu-item:focus-visible,
[data-theme="light"] .filter-button:hover,
[data-theme="light"] .filter-button:focus-visible,
[data-theme="light"] .filter-button.is-active,
[data-theme="light"] .theme-switch:hover,
[data-theme="light"] .theme-switch:focus-visible {
  background: #000000;
  color: #ffffff;
}

.search-card kbd {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: color-mix(in srgb, var(--panel) 82%, #ffffff);
  color: var(--faint);
  font-size: 12px;
}

.icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-search {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
  content: "";
}

.icon-compass {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-compass::before {
  position: absolute;
  inset: 4px 7px 4px 7px;
  background: currentColor;
  transform: skew(-16deg);
  content: "";
}

.icon-lens {
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.icon-lens::after {
  position: absolute;
  inset: 4px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
}

.icon-bag {
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.icon-bag::before {
  position: absolute;
  top: -5px;
  left: 4px;
  width: 8px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.icon-stack::before,
.icon-stack::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  content: "";
}

.icon-stack::before {
  top: 1px;
  left: 1px;
}

.icon-stack::after {
  right: 1px;
  bottom: 1px;
}

.menu-list {
  display: grid;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-item,
.filter-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.menu-item.is-current {
  background: #000000;
  color: #ffffff;
  box-shadow: inset 0 1px 0 var(--line);
}

.side-section {
  display: grid;
  gap: 10px;
}

.side-label {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-list {
  display: grid;
  gap: 4px;
}

.filter-button {
  width: 100%;
}

.filter-button span:first-child {
  width: 20px;
  text-align: center;
}

.sidebar-meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.meta-row strong {
  color: var(--text);
  font-weight: 600;
}

.theme-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  text-align: left;
}

.theme-orb {
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset -5px -3px 0 var(--panel);
}

.content {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 24px 108px;
}

.mobile-strip {
  display: none;
}

.gallery-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  gap: 18px;
}

.gallery-heading h1 {
  margin: 0;
  color: var(--text);
  font-family:
    "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

[data-theme="light"] .gallery-heading h1 {
  text-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.gallery-heading p {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.photo-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--column-count, 3), minmax(0, 1fr));
  gap: 20px;
}

.book-view {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 160px);
}

.book-stage {
  position: relative;
  display: grid;
  min-height: calc(100vh - 180px);
  place-items: center;
  perspective: 2200px;
}

.photo-book {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 1180px);
  aspect-ratio: 1.82;
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.52));
}

.book-cover-shadow {
  position: absolute;
  right: 18px;
  bottom: -22px;
  left: 18px;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.book-page {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 42px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.86), transparent 1px) 0 0 / 7px 7px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 18%),
    #f4f3ef;
  color: #171717;
  transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.2, 0.7, 0.16, 1), filter 0.52s ease;
}

.book-page-left {
  border-radius: 6px 0 0 6px;
  transform: rotateY(7deg);
  transform-origin: right center;
}

.book-page-right {
  border-radius: 0 6px 6px 0;
  transform: rotateY(-7deg);
  transform-origin: left center;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.86), transparent 1px) 0 0 / 7px 7px,
    linear-gradient(270deg, rgba(0, 0, 0, 0.08), transparent 18%),
    #f6f5f1;
}

.book-page::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 28%);
  pointer-events: none;
  content: "";
}

.book-page-left::after,
.book-page-right::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, transparent 49%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  content: "";
}

.book-page-left::after {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}

.book-page-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  gap: clamp(14px, 2vw, 22px);
}

.book-photo {
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.8);
  background: #e8e6df;
  box-shadow:
    0 18px 24px -18px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.book-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-copy {
  display: grid;
  gap: 8px;
}

.book-copy span {
  color: #d40e35;
  font-size: 11px;
  font-weight: 700;
}

.book-copy h2 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.book-copy p {
  margin: 0;
  color: rgba(23, 23, 23, 0.58);
  font-size: 14px;
}

.book-page-number {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: rgba(23, 23, 23, 0.08);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
}

.book-page-left .book-page-number {
  right: auto;
  left: 22px;
}

.book-spine {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  z-index: 4;
  width: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18) 26%, rgba(255, 255, 255, 0.9) 48%, rgba(0, 0, 0, 0.2) 74%, transparent);
  box-shadow:
    -18px 0 36px rgba(0, 0, 0, 0.12),
    18px 0 36px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.photo-book.is-turning-next .book-page-right {
  filter: brightness(0.84);
  transform: rotateY(-42deg) translateZ(18px);
}

.photo-book.is-turning-prev .book-page-left {
  filter: brightness(0.84);
  transform: rotateY(42deg) translateZ(18px);
}

.book-turn-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 50%;
  border: 0;
  background: transparent;
}

.book-turn-zone-left {
  left: 0;
  cursor: w-resize;
}

.book-turn-zone-right {
  right: 0;
  cursor: e-resize;
}

.book-turn-zone:disabled {
  cursor: default;
}

.photo-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.photo-card {
  --press-x: 50%;
  --press-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  outline: 0;
  perspective: 1800px;
  cursor: pointer;
}

.photo-card:focus-visible {
  box-shadow: 0 0 0 2px var(--text);
}

.card-inner {
  position: relative;
  min-height: 120px;
  border-radius: 4px;
  transform-style: preserve-3d;
  transform: perspective(1800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0) scale(1);
  transition:
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.22s ease;
  will-change: transform;
}

.image-wrapper {
  overflow: hidden;
  border: solid var(--line);
  border-width: 1px 0.5px 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: var(--card-shadow);
  backface-visibility: hidden;
  transition:
    opacity 0.34s ease,
    transform 0.34s ease,
    filter 0.24s ease,
    box-shadow 0.24s ease;
}

.image-wrapper {
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transform: scale(1.006);
  transition:
    filter 0.24s ease,
    transform 0.24s ease;
}

.image-wrapper::before,
.image-wrapper::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  opacity: 0;
  transition: opacity 0.22s ease;
}

.image-wrapper::before {
  background:
    radial-gradient(
      circle at var(--press-x) var(--press-y),
      rgba(0, 0, 0, 0.42) 0,
      rgba(0, 0, 0, 0.2) 16%,
      rgba(0, 0, 0, 0.03) 34%,
      transparent 55%
    );
  mix-blend-mode: multiply;
}

.image-wrapper::after {
  background:
    radial-gradient(
      circle at calc(100% - var(--press-x)) calc(100% - var(--press-y)),
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.08) 24%,
      transparent 56%
    );
}

.photo-card:hover .card-inner,
.photo-card:focus-visible .card-inner {
  transform: perspective(1800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(-8px) scale(0.992);
}

.photo-card:hover .image-wrapper,
.photo-card:focus-visible .image-wrapper {
  box-shadow:
    0 8px 12px -7px rgba(0, 0, 0, 0.68),
    inset 0 2px 9px rgba(255, 255, 255, 0.08),
    inset 0 -18px 34px rgba(0, 0, 0, 0.26);
}

.photo-card:hover .image-wrapper img,
.photo-card:focus-visible .image-wrapper img {
  filter: saturate(0.98) contrast(1.02);
  transform: scale(0.996);
}

.photo-card:hover .image-wrapper::before,
.photo-card:hover .image-wrapper::after,
.photo-card:focus-visible .image-wrapper::before,
.photo-card:focus-visible .image-wrapper::after {
  opacity: 1;
}

.photo-card.is-pressing .card-inner {
  transform: perspective(1800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(-18px) scale(0.978);
  transition-duration: 0.08s;
}

.photo-card.is-pressing .image-wrapper::before {
  opacity: 1;
  background:
    radial-gradient(
      circle at var(--press-x) var(--press-y),
      rgba(0, 0, 0, 0.5) 0,
      rgba(0, 0, 0, 0.28) 18%,
      rgba(0, 0, 0, 0.05) 38%,
      transparent 58%
    );
}

.image-error {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--muted);
}

.search-dialog {
  width: min(560px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 36px 90px var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.search-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.search-panel h2 {
  margin: 0;
  font-family:
    "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.close-search {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.close-search::before,
.close-search::after {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.close-search::before {
  transform: rotate(45deg);
}

.close-search::after {
  transform: rotate(-45deg);
}

.search-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.search-results {
  display: grid;
  gap: 8px;
  max-height: 380px;
  overflow: auto;
}

.result-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.result-item:hover,
.result-item:focus-visible {
  background: #000000;
  color: #ffffff;
  outline: none;
}

.result-item img {
  width: 64px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
}

.result-item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.result-item:hover strong,
.result-item:focus-visible strong {
  color: #ffffff;
}

.result-item span span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.photo-lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(96vw, 1680px);
  height: min(92vh, 1040px);
  margin: 0;
  place-items: center;
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.64);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  transform: translate(42%, -42%);
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  outline: none;
}

@media (max-width: 980px) {
  .app-frame {
    padding-left: 0;
  }

  .sidebar {
    position: sticky;
    top: 0;
    bottom: auto;
    left: auto;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    max-height: none;
    gap: 12px;
    padding: 16px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
  }

  .brand {
    min-height: 34px;
  }

  .search-card,
  .sidebar-meta,
  .theme-switch {
    display: none;
  }

  .menu-list,
  .filter-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 4px;
    border: 0;
  }

  .menu-item,
  .filter-button {
    min-width: max-content;
    min-height: 38px;
  }

  .side-section {
    gap: 8px;
  }

  .content {
    padding: 18px 16px 72px;
  }

  .mobile-strip {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-search,
  .mobile-theme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--panel);
    color: var(--muted);
  }

}

@media (max-width: 680px) {
  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-heading h1 {
    font-size: 32px;
  }

  .photo-columns {
    gap: 14px;
  }

  .photo-column {
    gap: 14px;
  }

  .photo-lightbox {
    padding: 14px;
  }

  .lightbox-frame {
    width: 100%;
    height: 88vh;
  }

  .lightbox-close {
    right: 8px;
    transform: translateY(-44%);
  }

}
