/* ═══════════════════════════════════════════════════════════
   KNIGHT VISION / style.css

   Pure black page. Two colours only: the logo mint, and a
   recording red used sparingly for camera furniture.
   ═══════════════════════════════════════════════════════════ */

:root{
  /* Colour */
  --ink:      #000000;          /* the page. pure black, nothing else */
  --mint:     #82E3D2;          /* sampled straight from the logo */
  --mint-dim: rgba(130,227,210,.55);
  --mint-ghost: rgba(130,227,210,.14);
  /* No second accent. The page is the logo mint on black, nothing
     else. The REC light used to be red and is now mint too. */
  --white:    #FFFFFF;
  --text:     rgba(255,255,255,.70);
  --faint:    rgba(255,255,255,.40);
  --line:     rgba(255,255,255,.10);

  /* Type */
  /* Rajdhani carries the headings and buttons, Chakra Petch gives
     the body copy its cut-corner technical edge, and Share Tech
     Mono handles anything that should read as a camera readout:
     the timecode, the counts, the hints, the tags. */
  --tech: "Rajdhani", "Arial Narrow", sans-serif;
  --body: "Chakra Petch", system-ui, -apple-system, sans-serif;
  --mono: "Share Tech Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Space */
  --pad: clamp(20px, 5vw, 64px);
  --gut: clamp(48px, 9vh, 120px);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--ink);
  color:var(--text);
  font-family:var(--body);
  font-weight:400;
  font-size:16.5px;
  line-height:1.72;
  letter-spacing:.012em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

::selection{ background:var(--mint); color:#000; }

:focus-visible{ outline:2px solid var(--mint); outline-offset:3px; }

.wrap{ width:min(1280px, 100% - (var(--pad)*2)); margin-inline:auto; }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--mint); color:#000; padding:12px 20px;
  font-family:var(--tech); font-weight:700; text-decoration:none;
}
.skip:focus{ left:8px; top:8px; }

/* ── shared type ─────────────────────────────────────────── */

.eyebrow{
  font-family:var(--mono); font-weight:400; font-size:12.5px;
  letter-spacing:.34em; text-transform:uppercase;
  color:var(--mint); margin:0 0 14px;
  text-shadow:0 0 14px rgba(130,227,210,.5);
  display:flex; align-items:center; gap:12px;
}
.eyebrow::before{
  content:""; width:26px; height:1px; background:var(--mint); flex:none;
}
.eyebrow.center{ justify-content:center; }
.eyebrow.center::after{
  content:""; width:26px; height:1px; background:var(--mint); flex:none;
}

.h-big{
  font-family:var(--tech); font-weight:700;
  font-size:clamp(38px, 6vw, 76px);
  line-height:.96; letter-spacing:.02em; text-transform:uppercase;
  color:var(--white); margin:0 0 26px;
}
.center{ text-align:center; }

/* ══════════════ SPLASH ══════════════ */

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  grid-template-columns:1fr;
  align-items:start;
  overflow:hidden;
  isolation:isolate;
  /* the blend layer below needs a real black backdrop to blend
     against, otherwise the grain composites over transparency */
  background:var(--ink);
}

/* The knight holds the top of the frame with the logo under it,
   the way a shot sits above a title card. --art is the one knob:
   it caps how big the head gets on a wide screen, and everything
   below keys its spacing off the same value. */
/* --art is the one knob for the splash. The svh term is what
   stops the head taking over a short, wide window: the plate is
   1.77:1, so capping the width at 72svh caps its height at about
   40% of the screen and leaves the logo and buttons above the
   fold. The vw term is what keeps it readable on a phone. */
.hero{ --art:min(158vw, 800px, 72svh); }

.hero-art{
  position:absolute; top:0; left:50%;
  transform:translateX(-50%);
  width:var(--art); height:auto;
  z-index:0;
}
.hero-art img{ width:100%; height:auto; }

.hero-art-fade{
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(to top,   #000 3%, rgba(0,0,0,.5) 46%, rgba(0,0,0,.18) 100%),
    linear-gradient(to right, #000 0%, rgba(0,0,0,0) 15%),
    linear-gradient(to left,  #000 0%, rgba(0,0,0,0) 15%);
}

/* logo and buttons, centred under the face */
.hero-body{
  grid-row:1;
  padding-inline:var(--pad);
  padding-top:calc(var(--art) * .43);
  /* the gaps below shrink with the window so the whole splash,
     face through socials, still lands above the fold on a short
     laptop screen */
  padding-bottom:clamp(48px, 8svh, 84px);
  z-index:2;
  width:100%;
  /* wide enough to keep the two buttons on one line at every
     size. The logo is tied to --art separately, so it still
     lines up with the shot above it. */
  max-width:calc(820px + var(--pad) * 2);
  justify-self:center;
  text-align:center;
}

.logo{ margin:0 0 clamp(14px, 2.4svh, 22px); }
.logo img{
  width:min(100%, calc(var(--art) * .80), 430px);
  height:auto; margin-inline:auto;
}

.tagline{
  font-family:var(--mono); font-weight:400;
  /* the vw term keeps the monospaced line from wrapping a third
     time on a narrow phone */
  font-size:clamp(11.5px, 3.1vw, 16px);
  letter-spacing:.14em; text-transform:uppercase;
  line-height:1.85; color:rgba(255,255,255,.52);
  margin:0 0 clamp(20px, 3.4svh, 34px);
}

/* ── the two big buttons ─────────────────────────────────── */

.cta{
  display:flex; flex-wrap:wrap; gap:14px;
  justify-content:center;
  width:min(100%, 620px);
  margin:0 auto clamp(24px, 4svh, 40px);
}

/* Both buttons speak the same language as the Contact address at
   the foot of the page: flat, thin bordered, corner ticks, no glow.
   The only difference between them is the fill. */
.btn{
  position:relative;
  flex:1 1 200px;
  display:inline-flex; align-items:center; justify-content:center; gap:11px;
  min-height:70px; padding:0 30px;
  border:1px solid var(--line);
  color:var(--mint); background:transparent;
  font-family:var(--tech); font-weight:600;
  /* same size ramp as .mail, so the pair and the contact address
     read as one component at every width */
  font-size:clamp(15px, 2.2vw, 21px);
  letter-spacing:.14em; text-transform:uppercase;
  white-space:nowrap;
  text-decoration:none; cursor:pointer;
  transition:background-color .22s ease, color .22s ease,
             border-color .22s ease, transform .22s ease;
}
.btn svg{ width:21px; height:21px; fill:currentColor; flex:none; }

/* corner ticks, echoing the logo's frame */
.btn::before,.btn::after{
  content:""; position:absolute; width:10px; height:10px;
  border:1px solid var(--mint); opacity:.8;
}
.btn::before{ top:-1px; left:-1px; border-right:0; border-bottom:0; }
.btn::after{ bottom:-1px; right:-1px; border-left:0; border-top:0; }

/* WISHLIST NOW is the filled one. background-color is kept separate
   from background-image so the sheen can be animated on its own
   without disturbing the mint fill underneath. */
.btn-primary{
  background-color:var(--mint); color:#000; border-color:var(--mint);
  background-image:linear-gradient(100deg,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,.62) 50%,
    rgba(255,255,255,0) 58%);
  background-repeat:no-repeat;
  background-size:250% 100%;
  /* parked off the right edge, so it is invisible between passes */
  background-position:170% 0;
  /* Idle attention loop. A short pass, then a long wait: the eye gets
     caught without the page nagging. Both ends of the travel sit off
     the button, so the reset between cycles is never visible. */
  animation:btn-idle 5.6s ease-in-out 2s infinite;
}

/* The corner ticks brighten just after the sweep clears, like a
   viewfinder confirming focus lock on the thing worth looking at. */
.btn-primary::before,.btn-primary::after{
  border-color:#000; opacity:.55;
  animation:btn-lock 5.6s ease-in-out 2s infinite;
}

/* On hover a single bright pass crosses the button, left to right:
   a scanline sweeping the frame, the same camera language as the
   grain over the splash and the blinking REC dot. */
.btn-primary:hover,.btn-primary:focus-visible{
  background-color:#9CEEDF; color:#000; border-color:#9CEEDF;
  transform:translateY(-2px);
  animation:btn-sweep .7s ease;
}
.btn-primary:active{ transform:translateY(0); }

@keyframes btn-sweep{
  from{ background-position:170% 0; }
  to  { background-position:-70% 0; }
}

/* Same 0.7s pass as the hover sweep, then parked for the remaining
   ~4.9s. Keep the two percentages in step if you retime the loop. */
@keyframes btn-idle{
  0%             { background-position:170% 0; }
  12.5%          { background-position:-70% 0; }
  100%           { background-position:-70% 0; }
}
@keyframes btn-lock{
  0%,10%,26%,100%{ opacity:.55; }
  16%            { opacity:1; }
}

@media (prefers-reduced-motion:reduce){
  .btn-primary,
  .btn-primary::before,.btn-primary::after,
  .btn-primary:hover,.btn-primary:focus-visible{
    animation:none; transform:none;
  }
}

/* JOIN DISCORD is the bordered one, and fills on hover */
.btn-ghost:hover,.btn-ghost:focus-visible{
  background:var(--mint); color:#000; border-color:var(--mint);
}
.btn-ghost:hover::before,.btn-ghost:hover::after{ border-color:#000; opacity:.55; }

/* A button whose LINKS entry is still empty looks exactly like the
   live one, it just has nowhere to go yet. */
.btn[data-pending]{ cursor:not-allowed; }

/* ── social row ──────────────────────────────────────────── */

.socials{ display:flex; flex-wrap:wrap; align-items:center; gap:11px; justify-content:center; }

.soc{
  position:relative;
  width:50px; height:50px;
  display:grid; place-items:center;
  border:1.5px solid var(--mint-dim);
  background:rgba(130,227,210,.06);
  color:var(--mint);
  transition:color .2s ease, border-color .2s ease,
             background .2s ease, transform .18s ease;
}
.soc svg{
  width:21px; height:21px; fill:currentColor;
}
/* same corner ticks as the buttons, so the row reads as one set */
.soc::before,.soc::after{
  content:""; position:absolute; width:7px; height:7px;
  border:1.5px solid var(--mint); opacity:0;
  transition:opacity .2s ease;
}
.soc::before{ top:-1.5px; left:-1.5px; border-right:0; border-bottom:0; }
.soc::after{ bottom:-1.5px; right:-1.5px; border-left:0; border-top:0; }

.soc:hover,.soc:focus-visible{
  color:#000; background:var(--mint); border-color:var(--mint);
  transform:translateY(-3px);
}
.soc:hover::before,.soc:hover::after{ opacity:1; }
.soc:active{ transform:translateY(0); }

/* ── viewfinder furniture ────────────────────────────────── */

.vf{ position:absolute; inset:24px; pointer-events:none; z-index:4; }
.vf-c{
  position:absolute; width:26px; height:26px;
  border:1.5px solid var(--mint); opacity:.65;
}
.vf-tl{ top:0;    left:0;  border-right:0; border-bottom:0; }
.vf-tr{ top:0;    right:0; border-left:0;  border-bottom:0; }
.vf-bl{ bottom:0; left:0;  border-right:0; border-top:0; }
.vf-br{ bottom:0; right:0; border-left:0;  border-top:0; }

.rec{
  position:absolute; top:44px; left:calc(var(--pad) + 4px);
  z-index:5;
  display:flex; align-items:center; gap:9px;
  font-family:var(--mono); font-size:12px; letter-spacing:.16em;
  color:var(--faint);
}
.rec-dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--mint); box-shadow:0 0 10px var(--mint);
  animation:blink 1.6s steps(1,end) infinite;
}
.rec-label{ color:var(--mint); font-weight:700; }
@keyframes blink{ 0%,55%{opacity:1} 56%,100%{opacity:.15} }
@media (prefers-reduced-motion:reduce){ .rec-dot{ animation:none; } }

/* Film grain + scanlines, drawn inline so nothing is fetched.
   soft-light is deliberate: it textures the knight but leaves a
   black pixel black, so the page stays true #000. */
.hero::after{
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
  mix-blend-mode:soft-light; opacity:.9;
  background-image:
    repeating-linear-gradient(to bottom,
      rgba(255,255,255,.10) 0 1px, transparent 1px 3px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:5; width:22px; height:38px;
  border:1px solid var(--line); border-radius:12px;
  display:grid; place-items:start center; padding-top:7px;
}
.scroll-cue span{
  width:2px; height:7px; background:var(--mint);
  animation:cue 1.9s ease-in-out infinite;
}
@keyframes cue{ 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(11px);opacity:.2} }
@media (prefers-reduced-motion:reduce){ .scroll-cue span{ animation:none; } }

/* ══════════════ STORY ══════════════ */

.story{ padding-block:var(--gut); border-top:1px solid var(--line); }

.story-grid{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:clamp(36px, 5vw, 76px);
  align-items:start;
}

.story-copy{ position:sticky; top:56px; }

.story-text{
  font-size:clamp(16px, 1.35vw, 18.5px);
  max-width:46ch; margin:0 0 34px;
}

.specs{ list-style:none; margin:0; padding:0; border-top:1px solid var(--line); }
.specs li{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
  padding:13px 0; border-bottom:1px solid var(--line);
}
.specs span{
  font-family:var(--mono); font-size:12px; font-weight:400;
  letter-spacing:.24em; text-transform:uppercase; color:var(--faint);
}
.specs strong{
  font-family:var(--tech); font-weight:700; font-size:16px;
  letter-spacing:.08em; color:var(--mint); text-align:right;
  text-shadow:0 0 16px rgba(130,227,210,.4);
}

/* ── gallery grid ────────────────────────────────────────── */

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.tile{
  position:relative; display:block;
  aspect-ratio:4/3; overflow:hidden;
  border:1px solid var(--line);
  background:#050505; padding:0; cursor:pointer;
  transition:border-color .25s ease;
}
.tile img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.35) contrast(1.05);
  transition:transform .5s cubic-bezier(.2,.7,.3,1), filter .35s ease, opacity .35s ease;
}
.tile:hover img,.tile:focus-visible img{
  transform:scale(1.06); filter:grayscale(0) contrast(1);
}
.tile:hover,.tile:focus-visible{ border-color:var(--mint); }

/* the little expand glyph */
.tile::after{
  content:""; position:absolute; right:9px; bottom:9px;
  width:15px; height:15px;
  border:1.5px solid var(--mint);
  border-left-width:0; border-bottom-width:0;
  opacity:0; transform:translate(-4px,4px);
  transition:opacity .25s ease, transform .25s ease;
}
.tile:hover::after,.tile:focus-visible::after{ opacity:1; transform:none; }

.tile-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:22px 10px 8px;
  background:linear-gradient(to top, rgba(0,0,0,.92), transparent);
  font-family:var(--tech); font-weight:600; font-size:11.5px;
  letter-spacing:.16em; text-transform:uppercase; color:#fff;
  text-align:left;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease;
}
.tile:hover .tile-cap,.tile:focus-visible .tile-cap{ opacity:1; transform:none; }

.grid-hint{
  margin:16px 0 0; text-align:right;
  font-family:var(--mono); font-size:11px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--faint);
}

/* the rigs bolted to the knights, in viewfinder brackets */
.rigs{
  list-style:none; margin:26px 0 0; padding:20px 0 0;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:10px 12px;
}
.rigs li{
  position:relative;
  padding:9px 18px;
  font-family:var(--mono); font-weight:400; font-size:13px;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--mint); white-space:nowrap;
  text-shadow:0 0 14px rgba(130,227,210,.45);
}
/* the brackets are drawn, so they hug each label at any length */
.rigs li::before,.rigs li::after{
  content:""; position:absolute; top:0; bottom:0; width:7px;
  border:1px solid var(--mint-dim);
}
.rigs li::before{ left:0;  border-right:0; }
.rigs li::after{  right:0; border-left:0;  }

/* ══════════════ FAQ ══════════════ */

.faq{ padding-block:var(--gut); border-top:1px solid var(--line); }
.faq .h-big{ margin-bottom:44px; }
.faq-list{ width:min(880px, 100%); margin-inline:auto; border-top:1px solid var(--line); }

.q{
  width:100%; text-align:left; cursor:pointer;
  display:flex; align-items:center; gap:20px;
  padding:24px 4px; background:none; border:0;
  border-bottom:1px solid var(--line);
  color:var(--white);
  font-family:var(--tech); font-weight:600;
  font-size:clamp(16px, 1.7vw, 21px);
  letter-spacing:.03em;
  transition:color .2s ease;
}
.q:hover{ color:var(--mint); }

.q-num{
  font-family:var(--mono); font-size:11px; letter-spacing:.1em;
  color:var(--mint); flex:none; opacity:.8;
}
.q-txt{ flex:1; }

.q-ico{ position:relative; width:13px; height:13px; flex:none; }
.q-ico::before,.q-ico::after{
  content:""; position:absolute; background:var(--mint);
  transition:transform .3s ease, opacity .3s ease;
}
.q-ico::before{ top:6px; left:0; width:13px; height:1.5px; }
.q-ico::after{ left:6px; top:0; width:1.5px; height:13px; }
.q[aria-expanded="true"] .q-ico::after{ transform:rotate(90deg); opacity:0; }
.q[aria-expanded="true"]{ color:var(--mint); }

.a{
  display:grid; grid-template-rows:0fr;
  border-bottom:1px solid var(--line);
  transition:grid-template-rows .34s ease;
}
.a[data-open]{ grid-template-rows:1fr; }
.a-in{ overflow:hidden; }
.a-in p{
  margin:0; padding:2px 4px 26px 45px;
  max-width:72ch; font-size:16.5px;
}
@media (prefers-reduced-motion:reduce){ .a{ transition:none; } }

/* ══════════════ CONTACT ══════════════ */

.contact{ padding-block:var(--gut); border-top:1px solid var(--line); text-align:center; }
.contact .h-big{ margin-bottom:20px; }
.contact-copy{
  margin:0 auto 34px; max-width:44ch;
  font-size:16.5px; color:var(--text);
}

.mail{
  position:relative; display:inline-block;
  padding:18px 40px;
  border:1px solid var(--line);
  color:var(--mint); text-decoration:none;
  font-family:var(--tech); font-weight:600;
  font-size:clamp(15px, 2.2vw, 21px);
  letter-spacing:.14em;
  transition:background .22s ease, color .22s ease, border-color .22s ease;
  word-break:break-word;
}
.mail::before,.mail::after{
  content:""; position:absolute; width:10px; height:10px;
  border:1px solid var(--mint); opacity:.8;
}
.mail::before{ top:-1px; left:-1px; border-right:0; border-bottom:0; }
.mail::after{ bottom:-1px; right:-1px; border-left:0; border-top:0; }
.mail:hover,.mail:focus-visible{
  background:var(--mint); color:#000; border-color:var(--mint);
}

/* ══════════════ FOOTER ══════════════ */

.foot{ padding-block:var(--gut) 48px; border-top:1px solid var(--line); }
.foot-in{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:26px; }
.foot-mark{ width:52px; height:52px; opacity:.85; }
.cta-sm{ margin-bottom:0; justify-content:center; width:min(560px,100%); }
.cta-sm .btn{ min-height:56px; font-size:14px; }
.fine{
  margin:8px 0 0; font-size:12.5px; line-height:1.9;
  color:rgba(255,255,255,.32); letter-spacing:.03em;
}

/* ══════════════ LIGHTBOX ══════════════ */

.lb{
  position:fixed; inset:0; z-index:100;
  background:var(--ink);
  display:grid; place-items:center;
  padding:clamp(16px,4vw,56px);
  animation:fade .22s ease;
}
.lb[hidden]{ display:none; }
@keyframes fade{ from{opacity:0} to{opacity:1} }

.lb-fig{ margin:0; width:100%; max-width:1400px; }

.lb-frame{ position:relative; }
.lb-frame .vf-c{ width:22px; height:22px; opacity:.9; }
.lb-frame .vf-tl{ top:-9px; left:-9px; }
.lb-frame .vf-tr{ top:-9px; right:-9px; }
.lb-frame .vf-bl{ bottom:-9px; left:-9px; }
.lb-frame .vf-br{ bottom:-9px; right:-9px; }

.lb-frame img{
  width:100%; max-height:80svh; object-fit:contain;
  margin-inline:auto; background:#000;
}

.lb-fig figcaption{
  display:flex; justify-content:space-between; align-items:baseline; gap:20px;
  margin-top:18px;
  font-family:var(--tech); font-weight:600; font-size:12.5px;
  letter-spacing:.2em; text-transform:uppercase;
}
.lb-cap{ color:var(--mint); }
.lb-count{ color:var(--faint); font-family:var(--mono); letter-spacing:.1em; }

.lb-close,.lb-nav{
  position:absolute; z-index:2;
  background:rgba(0,0,0,.6); border:1px solid var(--line);
  color:var(--white); cursor:pointer;
  display:grid; place-items:center;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.lb-close:hover,.lb-nav:hover,
.lb-close:focus-visible,.lb-nav:focus-visible{
  color:#000; background:var(--mint); border-color:var(--mint);
}
.lb-close{
  top:clamp(12px,3vw,26px); right:clamp(12px,3vw,26px);
  width:46px; height:46px; font-size:28px; line-height:1;
}
.lb-nav{
  top:50%; transform:translateY(-50%);
  width:46px; height:70px; font-size:30px; line-height:1;
}
.lb-prev{ left:clamp(8px,2vw,22px); }
.lb-next{ right:clamp(8px,2vw,22px); }

body.lb-open{ overflow:hidden; }

/* ══════════════ RESPONSIVE ══════════════ */

@media (max-width:1080px){
  .grid{ gap:10px; }
  .story-grid{ grid-template-columns:1fr; }
  .story-copy{ position:static; }
}

@media (max-width:860px){
  body{ font-size:16px; }

  /* Same shape as desktop, the face over the logo. Only the art
     changes: it overscales past the viewport so a wide close up
     still reads on a narrow screen rather than shrinking to a
     letterbox strip. */
  .hero-art img{ opacity:.62; }
  .hero-art-fade{
    background:
      linear-gradient(to top, #000 4%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.30) 100%);
  }
  .hero-body{ max-width:520px; padding-bottom:96px; }
  .cta{ flex-direction:column; }
  .btn{ flex:1 1 auto; width:100%; }
  .grid-hint{ text-align:center; }
  .a-in p{ padding-left:4px; }
}

@media (max-width:520px){
  .grid{ grid-template-columns:repeat(2, 1fr); }
  .vf{ inset:14px; }
  .vf-c{ width:18px; height:18px; }
  .rec{ top:30px; left:20px; font-size:11px; }
  .lb-nav{ width:40px; height:58px; }
  .lb-fig figcaption{ flex-direction:column; gap:6px; }
}
