.story-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  display: grid;
  gap: 8px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px; left: 17px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--mint));
  border-radius: 2px;
}

.timeline button {
  position: relative;
  border: 1px solid var(--border-wine);
  border-radius: var(--radius);
  padding: 14px 14px 14px 44px;
  background: var(--surface-alt);
  color: var(--muted);
  text-align: left;
  min-height: 44px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.timeline button::before {
  content: "";
  position: absolute;
  top: 50%; left: 10px;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 2.5px solid var(--paper);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px rgba(103,29,44,0.2);
}

.timeline button span  { display: block; color: var(--ink); font-weight: 800; font-size: 13px; }
.timeline button small { font-size: 11px; margin-top: 1px; }

.timeline button:hover:not(.is-active) {
  background: var(--surface-hover);
  box-shadow: var(--shadow-sm);
}

.timeline button.is-active {
  background: var(--wine);
  color: rgba(255,255,255,0.7);
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(103,29,44,0.28);
}

.timeline button.is-active span  { color: white; }
.timeline button.is-active::before { background: var(--gold); border-color: rgba(255,255,255,0.4); }

.chapter-panel {
  min-height: 360px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--chapter-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.chapter-panel > span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-panel h3 { margin: 4px 0 16px; color: var(--wine); }

.chapter-panel p {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.82;
}

.chapter-carousel {
  position: relative;
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(58,23,19,0.14);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.chapter-carousel.is-dragging {
  cursor: grabbing;
}

.chapter-carousel--placeholder {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  background:
          linear-gradient(135deg, rgba(255,248,239,0.9), rgba(140,199,212,0.28)),
          var(--paper-deep);
  cursor: default;
}

.carousel-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
  color: rgba(103,29,44,0.72);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.carousel-placeholder::before {
  content: "";
  width: 72px;
  height: 56px;
  border: 2px solid rgba(103,29,44,0.24);
  border-radius: 10px;
  background:
          radial-gradient(circle at 74% 28%, rgba(216,154,66,0.75) 0 6px, transparent 7px),
          linear-gradient(135deg, transparent 48%, rgba(47,127,111,0.22) 49% 63%, transparent 64%),
          linear-gradient(45deg, transparent 42%, rgba(183,63,85,0.2) 43% 63%, transparent 64%);
  box-shadow: 0 10px 22px rgba(58,23,19,0.12);
}

.carousel-placeholder-text {
  font-size: 12px;
}

.carousel-track {
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--paper-deep);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1;
}
.carousel-slide-image-wrapper {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.carousel-slide img        { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.chapter-carousel.is-dragging .carousel-track {
  transition: none;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%; z-index: 4;
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: rgba(37,21,21,0.55);
  color: white; font-size: 20px;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-prev:hover, .carousel-next:hover {
  background: var(--wine);
  transform: translateY(-50%) scale(1.08);
}

.carousel-dots {
  position: absolute;
  bottom: 10px; left: 50%; z-index: 4;
  display: flex; gap: 5px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 7px; height: 7px;
  border: 0; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active { background: white; transform: scale(1.4); }

.chapter-carousel-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.carousel-slide-delete {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}

.carousel-slide-delete:hover {
  background: var(--wine);
  transform: scale(1.1);
}

.gallery-section {
  background: linear-gradient(120deg, rgba(47,127,111,0.05), rgba(216,154,66,0.07));
}

.photo-hint { color: var(--muted); line-height: 1.6; margin: 6px 0 0; font-size: 15px; }

.photo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.photo-main {
  position: relative;
  height: 70vh;
  max-height: 660px;
  min-height: 360px;
  margin: 0; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transform: translateZ(0);
}

.photo-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(160deg, #2c1118 0%, #3a1620 55%, #2c1118 100%);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center;
}
.photo-frame img.is-entering:not(.is-leaving) { animation: photoDrift 4.2s ease both; }
.photo-frame img.is-leaving { position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.55s ease; }
.photo-frame img.is-active  { position: relative; z-index: 2; }

.photo-main figcaption {
  position: absolute;
  right: 0; bottom: 0; left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px; padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(37,21,21,0.82) 0%, transparent 100%);
  color: white;
}

.photo-main strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1;
}

.photo-main span { max-width: 380px; color: rgba(255,255,255,0.75); line-height: 1.5; font-size: 13px; text-align: right; }

.photo-main figcaption > div:first-child {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.photo-side {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  max-height: 70vh;
}

.photo-strip {
  display: flex; flex-direction: column; gap: 7px;
  overflow-y: auto; min-height: 0; padding-right: 2px; padding-bottom: 7px; padding-left: 6px;
  scrollbar-width: thin; scrollbar-color: var(--rose) transparent;
}

.photo-strip::-webkit-scrollbar       { width: 3px; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

.photo-strip button {
  flex-shrink: 0; height: 88px; overflow: clip;
  border: 2.5px solid transparent; border-radius: var(--radius);
  padding: 0; background: rgba(255,255,255,0.5); opacity: 0.65;
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.photo-strip button.is-active {
  border-color: var(--gold); opacity: 1;
  transform: translateX(-5px);
  box-shadow: 0 4px 14px rgba(216,154,66,0.3);
}

.photo-strip button:hover:not(.is-active) { opacity: 0.88; }
.photo-strip img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

.video-section { background: transparent; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.video-card-wrapper {
  position: relative;
  width: 100%;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--video-card-bg);
  border: 1px solid rgba(103,29,44,0.08);
  box-shadow: 0 4px 20px rgba(58,23,19,0.1);
  cursor: pointer;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card-wrapper:hover .video-card {
  transform: translateY(-6px);
  box-shadow:
          0 18px 52px rgba(58,23,19,0.2),
          0 0 0 1.5px rgba(120, 170, 255, 0.85),
          0 0 26px 5px rgba(120, 170, 255, 0.55),
          0 0 54px 14px rgba(180, 130, 255, 0.35);
}

.video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a0a0a;
  width: 100%;
}

.video-card--landscape .video-thumb {
  aspect-ratio: 16/9;
  max-height: none;
}

.video-preview {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  display: block;
  transition: transform 0.5s ease;
}

.video-card-wrapper:hover .video-preview { transform: scale(1.04); }
.video-card.is-previewing .video-thumb-overlay { opacity: 0; }

.video-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,21,21,0.75) 0%, rgba(37,21,21,0.15) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.video-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 14px 14px 12px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.video-thumb-label small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}

.video-thumb-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,21,21,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card-wrapper:hover .video-thumb-overlay { opacity: 1; }

.video-play-btn {
  width: 56px; height: 56px;
  filter: drop-shadow(0 4px 20px rgba(103,29,44,0.5));
  transform: scale(0.82);
  transition: transform var(--transition);
}

.video-card-wrapper:hover .video-play-btn { transform: scale(1); }

.video-info {
  padding: 8px 14px 12px;
  min-height: 0;
}

.video-info span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.video-info:empty { display: none; }

.video-lightbox {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(10,5,5,0);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.video-lightbox.is-open   { background: var(--video-lightbox-bg, rgba(10,5,5,0.92)); backdrop-filter: blur(20px); }
.video-lightbox.is-hiding { background: rgba(10,5,5,0);    backdrop-filter: blur(0px);  }

.video-lightbox-inner {
  position: relative;
  width: min(960px, 100%);
  max-width: 100%;
  display: flex; flex-direction: column; gap: 14px;
  transform: scale(0.9); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), opacity 0.35s ease;
}

.video-lightbox.is-open   .video-lightbox-inner { transform: scale(1);   opacity: 1; }
.video-lightbox.is-hiding .video-lightbox-inner { transform: scale(0.9); opacity: 0; }

.video-lightbox-close {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,248,239,0.2); border-radius: 50%;
  background: rgba(255,248,239,0.1);
  color: #fff8ef; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.video-lightbox-close:hover { background: var(--rose); border-color: var(--rose); }

.video-lightbox-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic; font-weight: 700;
  color: rgba(255,248,239,0.92);
  text-align: center;
}

.video-lightbox-player {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 32px 100px rgba(0,0,0,0.6);
  background: #000;
  max-height: 82vh;
}

.video-add-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(103,29,44,0.2);
  border-radius: var(--radius-lg);
  background: var(--upload-zone-bg);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  aspect-ratio: 9/16;
  max-height: 400px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.video-add-btn:hover {
  border-color: var(--rose);
  background: rgba(183,63,85,0.05);
  color: var(--wine);
  transform: translateY(-4px);
}

.video-add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(103,29,44,0.08);
  font-size: 24px;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}

.video-add-btn:hover .video-add-icon {
  background: var(--rose);
  color: white;
  transform: scale(1.1);
}

.photo-strip-add {
  flex-shrink: 0;
  height: 52px;
  border: 2px dashed rgba(103,29,44,0.2);
  border-radius: var(--radius);
  background: var(--upload-zone-bg);
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.photo-strip-add:hover {
  border-color: var(--rose);
  background: rgba(183,63,85,0.06);
  color: var(--wine);
}

.content-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.content-card-actions button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,248,239,0.22);
  border-radius: 50%;
  background: rgba(37,21,21,0.34);
  color: #fff8ef;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.content-card-actions button:hover {
  background: var(--rose);
  transform: scale(1.06);
}

.content-card-actions--video {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card-wrapper:hover .content-card-actions--video,
.video-card:focus-within .content-card-actions--video {
  opacity: 1;
}

.inline-upload-modal {
  position: fixed; inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(37,21,21,0);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.inline-upload-modal.is-open {
  background: rgba(37,21,21,0.7);
  backdrop-filter: blur(16px);
}

.inline-upload-card {
  position: relative;
  width: min(480px, 92vw);
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--inline-upload-bg);
  border: 1px solid var(--border-wine);
  box-shadow: 0 32px 100px rgba(37,21,21,0.3);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s ease;
}

.inline-upload-modal.is-open .inline-upload-card {
  transform: scale(1);
  opacity: 1;
}

.inline-upload-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: 0; border-radius: 50%;
  background: rgba(103,29,44,0.1);
  color: var(--wine); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.inline-upload-close:hover { background: var(--rose); color: white; }

.inline-upload-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 700;
  color: var(--wine); margin: 0 0 20px;
  text-align: center;
}

.inline-upload-zone {
  border: 2px dashed rgba(103,29,44,0.22);
  border-radius: var(--radius);
  padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; cursor: pointer;
  background: var(--surface-alt);
  transition: border-color var(--transition), background var(--transition);
}

.inline-upload-zone:hover,
.inline-upload-zone.is-drag {
  border-color: var(--rose);
  background: rgba(183,63,85,0.05);
}

.inline-upload-icon { font-size: 36px; }

.inline-upload-zone p {
  margin: 0;
  color: var(--wine);
  font-weight: 700;
  font-size: 15px;
}

.inline-upload-hint {
  color: var(--muted) !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

.upload-input-hidden {
  position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0;
}

.inline-upload-progress {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}

.inline-upload-bar {
  height: 6px; border-radius: 3px;
  background: rgba(103,29,44,0.1); overflow: hidden;
}

.inline-upload-fill {
  height: 100%; width: 0%;
  background: var(--rose); border-radius: 3px;
  transition: width 0.2s ease, background 0.3s ease;
}

#inline-status {
  font-size: 13px; color: var(--muted); text-align: center;
}

.content-edit-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-edit-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.content-edit-form input,
.content-edit-form textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--input-bg);
  color: var(--wine);
  font: inherit;
  resize: vertical;
}

.content-edit-form input[type="file"] {
  padding: 9px 12px;
  cursor: pointer;
}

.content-edit-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.content-edit-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--rose);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.content-edit-actions .content-danger {
  background: rgba(103,29,44,0.1);
  color: var(--wine);
}

.content-edit-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Story Lightbox Styles */
.story-lightbox {
  cursor: default;
  touch-action: none;
}

.story-lightbox.is-dragging {
  cursor: grabbing;
}

.story-lightbox .lightbox-container {
  position: relative;
  width: min(1040px, 100%);
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 34px 120px rgba(0,0,0,0.32);
  animation: lightboxIn 0.25s ease both;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0 24px;
}

.story-lightbox .lightbox-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.story-lightbox .lightbox-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.story-lightbox .lightbox-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-lightbox .lightbox-slide img {
  display: block;
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.story-lightbox.is-dragging .lightbox-track {
  transition: none;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(37,21,21,0.65);
  color: white;
  font-size: 24px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--wine);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(37,21,21,0.65);
  color: white;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--wine);
}

.lightbox-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.lightbox-dot.is-active {
  background: white;
  transform: scale(1.3);
}

.lightbox-caption {
  display: grid;
  gap: 4px;
  padding: 16px 0 24px 0;
  background: transparent;
}

.lightbox-caption strong {
  color: var(--wine);
  font-size: 20px;
}

.lightbox-caption span {
  color: var(--muted);
}