.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
}
.auth-card {
  max-width: 380px;
  margin: 60px auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 12px;
  color: var(--coral-deep);
  font-weight: 700;
}
h1 {
  font-weight: 800;
  margin: 8px 0 16px;
}
.page h1,
.page h2 {
  font-family: var(--font-display);
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stack label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}
.stack input {
  padding: 10px 12px;
  border: 1.5px solid rgba(41, 33, 27, 0.14);
  border-radius: 10px;
  font-size: 15px;
}
.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-approve {
  background: var(--tint-sage);
  color: var(--ink);
}
.btn-soft {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid rgba(41, 33, 27, 0.14);
}
.muted {
  color: rgba(41, 33, 27, 0.66);
  font-size: 14px;
}
.error {
  color: var(--coral);
  font-weight: 600;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.create-card {
  max-width: 420px;
  margin: 8px 0 28px;
}
.cap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cap-chip {
  background: #fff;
  border: 1.5px solid rgba(41, 33, 27, 0.1);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.event-card {
  display: block;
  padding: 20px;
  border-radius: 16px;
  background: var(--tint-sand);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1deg);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.event-card:nth-child(3n + 2) {
  background: var(--tint-periwinkle);
  transform: rotate(1deg);
}
.event-card:nth-child(3n) {
  background: var(--tint-blush);
  transform: rotate(-0.5deg);
}
.event-card:hover,
.event-card:focus-visible {
  transform: rotate(0);
  box-shadow: var(--shadow-pop);
}
.event-card h2 {
  margin: 12px 0 0;
  font-size: 20px;
}
.limit-readout {
  opacity: 0.6;
}
.header-editor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
}
.header-preview {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.header-preview-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(41, 33, 27, 0.55);
  font-size: 14px;
  font-weight: 600;
  background: repeating-linear-gradient(48deg, #e9c4c0, #e9c4c0 9px, #e2b9b5 9px, #e2b9b5 18px);
}
.header-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.header-form input[type="file"] {
  font-size: 13px;
}
.qr-card {
  text-align: center;
}
.qr-card svg {
  width: 220px;
  height: 220px;
}
.pill {
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.pill-draft {
  background: var(--amber);
  color: var(--ink);
}
.pill-live {
  background: var(--green);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.gallery-card.status-pending_approval {
  border: 2px solid var(--amber);
}
.gallery-card.status-hidden {
  opacity: 0.62;
}
.gallery-tile {
  position: relative;
  display: block;
}
.gallery-chip {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 7px;
}
.chip-pending {
  background: var(--amber);
  color: var(--ink);
}
.chip-hidden {
  background: rgba(41, 33, 27, 0.8);
  color: #fff;
}
.chip-play {
  background: var(--ink);
  color: #fff;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  gap: 8px;
}
.card-meta .actions {
  display: flex;
  gap: 6px;
}
.card-meta form {
  display: inline;
}
.card-meta .actions .btn {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}
.banner-review {
  display: flex;
  align-items: center;
  background: var(--note-cream);
  border: 1.5px solid var(--amber);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 14px 0;
  gap: 14px;
}
.banner-review-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: none;
}
.banner-review-body {
  flex: 1;
}
.banner-review-body strong {
  display: block;
  font-size: 14.5px;
}
.banner-review-body p {
  margin: 2px 0 0;
}
.filters {
  display: flex;
  gap: 8px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.filters .pill {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid rgba(41, 33, 27, 0.12);
  color: inherit;
  text-decoration: none;
}
.filters .pill-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.filter-count {
  color: var(--coral-deep);
  margin-left: 4px;
}
.pill-active .filter-count {
  color: #fff;
}
.tile-processing {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  color: rgba(41, 33, 27, 0.5);
  font-weight: 700;
}
.gb-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}
.note-card {
  background: var(--note-pink);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 0;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 16px rgba(41, 33, 27, 0.06);
  font-family: var(--font-display);
  font-style: italic;
}
.note-card.note-alt {
  background: var(--note-cream);
  transform: rotate(0.8deg);
}
.note-card.note-coral {
  background: #f7d3c9;
}
.note-card.note-amber {
  background: #f7e3bc;
}
.note-card.note-sage {
  background: #cad6bc;
}
.note-card.note-periwinkle {
  background: #c8cdea;
}
.entry-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
}
.gb-card {
  max-width: 640px;
}
.gb-audio audio {
  width: 100%;
}
.audio-label {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}
.entry-poster {
  max-width: 200px;
  border-radius: 12px;
  display: block;
  margin-bottom: 8px;
}
.gb-play {
  font-weight: 700;
  color: var(--coral-deep);
}
.gb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
}
.gb-name {
  font-weight: 700;
  font-size: 13px;
}
.gb-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--magenta-deep);
}
.gb-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-style: normal;
}
.gb-actions form {
  display: inline;
}
.gb-actions .btn {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}
.note-card.status-hidden,
.gb-card.status-hidden {
  opacity: 0.62;
}
.note-card.status-pending_approval,
.gb-card.status-pending_approval {
  border: 2px solid var(--amber);
}
.remote-card {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.remote-link {
  display: block;
  width: 100%;
  word-break: break-all;
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.remote-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.remote-actions form {
  display: inline;
}
.remote-form {
  max-width: 560px;
}
.remote-speed {
  border: 1.5px solid rgba(41, 33, 27, 0.14);
  border-radius: 10px;
  padding: 7px 10px;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
}
.toggle-check {
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(41, 33, 27, 0.18);
  position: relative;
  cursor: pointer;
  flex: none;
  margin: 0;
}
.toggle-check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s ease;
}
.toggle-check:checked {
  background: var(--coral);
}
.toggle-check:checked::after {
  left: 21px;
}
.auth-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow-coral);
}
.auth-lede {
  margin: 2px 0 14px;
}
.auth-subhead {
  font-size: 18px;
  margin: 18px 0 6px;
}
.auth-passkey {
  margin-top: 12px;
  width: 100%;
}
.auth-alt {
  margin-top: 16px;
}
.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.dash-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0;
}
.dash-sub {
  font-size: 13.5px;
  color: rgba(41, 33, 27, 0.66);
  margin: 2px 0 0;
}
.dash-section {
  margin-bottom: 24px;
}
.section-head {
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
}
.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 560px;
}
.toggle-label {
  display: flex;
  flex-direction: column;
}
.toggle-title {
  font-size: 13.5px;
  font-weight: 700;
}
.toggle-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--magenta-deep);
  margin-top: 1px;
}
.toggle-switch {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(41, 33, 27, 0.18);
  position: relative;
  cursor: pointer;
  flex: none;
}
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s ease;
}
.toggle-switch.is-on {
  background: var(--coral);
}
.toggle-switch.is-on::after {
  left: 21px;
}
.toggle-switch.is-on {
  background: var(--coral);
  color: #fff;
}
.toggle-switch:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.dash {
  display: flex;
  min-height: 100vh;
}
.dash-side {
  width: 248px;
  flex: none;
  background: var(--ink);
  color: var(--cream);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
}
.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 22px;
}
.dash-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}
.dash-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.dash-back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(251, 243, 231, 0.7);
  text-decoration: none;
}
.dash-back:hover {
  color: #fff;
}
.dash-eventcard {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 13px 14px;
  margin-bottom: 18px;
}
.dash-eventcard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: rgba(251, 243, 231, 0.55);
}
.dash-eventcard-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-top: 3px;
}
.dash-eventcard-status {
  font-size: 11.5px;
  color: rgba(251, 243, 231, 0.6);
  margin-top: 2px;
}
.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  font-weight: 600;
}
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 11px;
  color: rgba(251, 243, 231, 0.7);
  text-decoration: none;
}
.dash-nav a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}
.dash-nav a.active {
  background: var(--coral);
  color: #fff;
}
.dash-nav-icon {
  font-size: 15px;
}
.dash-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-avatar {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-foot-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-size: 12px;
}
.dash-foot-name {
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-foot-name:hover {
  text-decoration: underline;
}
.dash-foot-logout {
  background: none;
  border: none;
  padding: 0;
  margin-top: 1px;
  font: inherit;
  text-align: left;
  color: rgba(251, 243, 231, 0.5);
  cursor: pointer;
}
.dash-foot-logout:hover {
  color: var(--cream);
}
.dash-main {
  flex: 1;
  min-width: 0;
  background: var(--cream);
  padding: 26px 30px;
}
@media (max-width: 820px) {
  .dash {
    flex-direction: column;
  }
  .dash-side {
    width: 100%;
    padding: 14px 16px;
  }
  .dash-brand {
    padding: 0 0 12px;
  }
  .dash-eventcard {
    margin-bottom: 12px;
  }
  .dash-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dash-nav a {
    padding: 9px 12px;
  }
  .dash-foot {
    margin-top: 12px;
  }
  .dash-main {
    padding: 20px 16px;
  }
}
body.tv {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
}
#tv {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 2.5vh 2.5vw;
  box-sizing: border-box;
}
.tv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tv-brand {
  display: flex;
  align-items: center;
  gap: 1.2vw;
}
.tv-logo {
  width: 5vh;
  height: 5vh;
  border-radius: 1.4vh;
  flex: none;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.8vh;
}
.tv-titles h1 {
  font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 800;
  font-size: 3.2vh;
  line-height: 1;
  margin: 0;
}
.tv-date {
  font-size: 1.7vh;
  color: rgba(251, 243, 231, 0.6);
  margin: 0.5vh 0 0;
}
.tv-live {
  display: flex;
  align-items: center;
  gap: 1vh;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  padding: 1vh 2vh;
  font-weight: 700;
  font-size: 2vh;
  letter-spacing: 0.04em;
}
.tv-live::before {
  content: "";
  width: 1.1vh;
  height: 1.1vh;
  border-radius: 50%;
  background: var(--coral);
  animation: bo-blink 1.6s infinite;
}
.tv-live-off::before {
  animation: none;
  background: rgba(251, 243, 231, 0.4);
}
@keyframes bo-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.tv-stage {
  flex: 1;
  display: flex;
  gap: 2vw;
  min-height: 0;
  margin: 2vh 0 1.4vh;
}
.tv-hero {
  flex: 1;
  position: relative;
  border-radius: 1.8vh;
  overflow: hidden;
  background: #000;
  box-shadow: 0 3vh 7vh rgba(0, 0, 0, 0.4);
}
.tv-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s;
}
.tv-hero img.hidden {
  opacity: 0;
}
.tv-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 12, 0.72), transparent 42%);
  pointer-events: none;
}
.tv-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tv-attrib {
  position: absolute;
  left: 2.4vh;
  bottom: 2.4vh;
  display: none;
  align-items: center;
  gap: 1.4vh;
}
.tv-avatar {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  flex: none;
  background: var(--magenta, #d6357f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.9vh;
  border: 0.35vh solid rgba(255, 255, 255, 0.85);
}
.tv-attrib-body {
  display: flex;
  flex-direction: column;
}
.tv-attrib-eyebrow {
  font-size: 1.4vh;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.tv-attrib-name {
  font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.6vh;
  line-height: 1.15;
}
.tv-rail {
  width: 20vw;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.6vh;
}
.tv-qr-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 1.6vh;
  padding: 1.6vh;
  display: flex;
  align-items: center;
  gap: 1.4vh;
}
.tv-qr {
  width: 9vh;
  height: 9vh;
  flex: none;
  background: #fff;
  border-radius: 1vh;
}
.tv-qr svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tv-qr-text {
  display: flex;
  flex-direction: column;
}
.tv-qr-text strong {
  font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 800;
  font-size: 2vh;
  line-height: 1.1;
}
.tv-qr-text span {
  font-size: 1.5vh;
  color: rgba(41, 33, 27, 0.6);
  margin-top: 0.5vh;
}
.tv-upnext {
  display: none;
}
.tv-upnext-label {
  font-size: 1.4vh;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 243, 231, 0.55);
  margin: 0 0 1vh;
  padding-left: 0.4vh;
}
.tv-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2vh;
}
.tv-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.2vh;
  display: none;
  background: rgba(251, 243, 231, 0.08);
}
.tv-note {
  display: none;
  margin-top: auto;
  background: var(--note-pink, #fce3ec);
  color: var(--ink);
  border-radius: 1.4vh;
  padding: 1.6vh;
  transform: rotate(-1.5deg);
}
.tv-note-label {
  font-size: 1.2vh;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta, #d6357f);
  margin: 0;
}
.tv-note-text {
  font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  font-style: italic;
  font-size: 1.9vh;
  line-height: 1.3;
  margin: 0.7vh 0 0;
}
.tv-note-name {
  font-size: 1.4vh;
  font-weight: 700;
  color: var(--magenta, #d6357f);
  margin: 0.7vh 0 0;
}
.tv-note-coral {
  background: #f7d3c9;
}
.tv-note-amber {
  background: #f7e3bc;
}
.tv-note-sage {
  background: #cad6bc;
}
.tv-note-periwinkle {
  background: #c8cdea;
}
.tv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}
.tv-progress {
  flex: 1;
  height: 0.7vh;
  background: rgba(251, 243, 231, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.tv-progress div {
  height: 100%;
  width: 0;
  background: var(--coral);
}
.tv-counter {
  font-size: 1.6vh;
  font-weight: 600;
  color: rgba(251, 243, 231, 0.55);
}
@keyframes tvbar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Gallery lightbox (couple review) */
.gallery-tile {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 16, 12, 0.9);
}
.lightbox-stage {
  display: flex;
  max-width: 94vw;
  max-height: 88vh;
}
.lightbox-media {
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  cursor: pointer;
  background: rgba(251, 243, 231, 0.14);
  color: var(--cream);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  font-size: 18px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 1;
}
.lightbox-prev {
  left: 12px;
}
.lightbox-next {
  right: 12px;
}
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
}
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}
