/* ============================================
   DECO landing page — monochrome premium style
   (layered on top of style.css)
   ============================================ */

.dl { --dl-bg: #F4F5F6; --dl-ink: #101113; --dl-mut: #6b7075; --dl-line: #E3E5E7; }

.dl main { background: var(--dl-bg); color: var(--dl-ink); }

.dl .dl-kicker {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dl-mut);
}

/* dark pill buttons */
.dl .btn-dark {
  background: var(--dl-ink);
  color: #fff;
  border-radius: 4px;
  padding: 14px 26px;
  font-weight: 500;
}
.dl .btn-dark:hover { background: #2a2c2f; color: #fff; }
.dl .btn-ghost {
  background: transparent;
  color: var(--dl-ink);
  border: 1px solid #c9ccd0;
  border-radius: 4px;
  padding: 14px 26px;
  font-weight: 500;
}
.dl .btn-ghost:hover { border-color: var(--dl-ink); background: transparent; }

/* ---------- Hero ---------- */
.dl-hero { min-height: 78vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.dl-hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 64px 32px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; width: 100%;
}

.dl-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
}

.dl-hero .dl-sub { color: var(--dl-mut); font-size: 1rem; line-height: 1.9; margin-bottom: 34px; max-width: 40ch; }

.dl-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.dl-hero-art { position: relative; }
.dl-hero-art img { width: auto; max-width: 100%; max-height: 68vh; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(16,17,19,0.18)); }

.dl-scroll {
  position: absolute; left: 32px; bottom: 26px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: var(--dl-mut); letter-spacing: 0.08em;
}
.dl-scroll .dot { width: 18px; height: 28px; border: 1.5px solid #b9bdc2; border-radius: 10px; position: relative; }
.dl-scroll .dot::after { content: ""; position: absolute; top: 5px; left: 50%; width: 3px; height: 6px; margin-left: -1.5px; border-radius: 2px; background: #b9bdc2; animation: dl-drop 1.6s infinite; }
@keyframes dl-drop { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ---------- Model browser ---------- */
.dl-lineup { background: #fff; padding: 84px 0 72px; border-top: 1px solid var(--dl-line); }

.dl-lineup-head { max-width: 1240px; margin: 0 auto 8px; padding: 0 32px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 18px; }

.dl-lineup-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 500; letter-spacing: -0.01em; margin-top: 10px; }

.dl-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.dl-filters button {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid #d4d7da;
  background: #fff;
  color: var(--dl-mut);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.dl-filters button:hover { border-color: var(--dl-ink); color: var(--dl-ink); }
.dl-filters button.active { background: var(--dl-ink); border-color: var(--dl-ink); color: #fff; }

.dl-stage-wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; }

.dl-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  align-items: center;
  gap: 8px;
  min-height: 380px;
}

.dl-stage .dl-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f0f1f3;
  z-index: 0;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 8px;
}

.dl-side { text-align: center; opacity: 0.35; cursor: pointer; z-index: 1; transition: opacity 0.2s; border: none; background: transparent; }
.dl-side:hover { opacity: 0.65; }
.dl-side img { max-height: 170px; width: auto; max-width: 100%; margin: 0 auto; object-fit: contain; }
.dl-side .nm { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--dl-mut); text-transform: uppercase; margin-top: 10px; }

.dl-center { text-align: center; z-index: 1; }
.dl-center img { max-height: 330px; width: auto; max-width: 100%; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(16,17,19,0.16)); }

.dl-arrow {
  position: absolute; top: 42%; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #d4d7da; background: #fff; color: var(--dl-ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background-color 0.2s;
}
.dl-arrow:hover { border-color: var(--dl-ink); }
.dl-arrow svg { width: 18px; height: 18px; }
.dl-arrow.prev { left: 12px; }
.dl-arrow.next { right: 12px; }

/* spec strip under stage */
.dl-specs {
  max-width: 760px; margin: 8px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: center;
}
.dl-specs .sp .v { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.dl-specs .sp .k { font-size: 0.8rem; color: var(--dl-mut); margin-top: 2px; }

/* detail panel */
.dl-detail {
  max-width: 860px; margin: 30px auto 0; padding: 26px 32px;
  background: #fafbfb; border: 1px solid var(--dl-line); border-radius: 10px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px;
}
.dl-detail h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.dl-detail table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.dl-detail td { padding: 7px 0; border-bottom: 1px solid #eceeef; vertical-align: top; }
.dl-detail td:first-child { color: var(--dl-mut); width: 45%; padding-right: 12px; }
.dl-price-box { display: flex; flex-direction: column; gap: 10px; }
.dl-price-box .pr { font-family: var(--font-head); }
.dl-price-box .pr .a { font-size: 2rem; font-weight: 600; }
.dl-price-box .pr .b { display: block; font-size: 0.82rem; color: var(--dl-mut); }
.dl-price-box .btn { justify-content: center; }

.dl-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.dl-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: #d4d7da; cursor: pointer; padding: 0; transition: background-color 0.2s, transform 0.2s; }
.dl-dots button.active { background: var(--dl-ink); transform: scale(1.35); }

/* ---------- Giant stat ---------- */
.dl-stat { background: var(--dl-bg); padding: 90px 0; border-top: 1px solid var(--dl-line); }
.dl-stat-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.dl-stat .big {
  font-family: var(--font-head);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
}
.dl-stat .side-note { color: var(--dl-ink); font-size: 1.05rem; line-height: 1.6; }
.dl-stat .side-note small { display: block; color: var(--dl-mut); margin-top: 6px; }

/* ---------- Dark band ---------- */
.dl-band {
  position: relative; min-height: 420px; display: flex; align-items: center;
  background: #101113 center/cover no-repeat;
  color: #fff;
}
.dl-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,12,0.72) 0%, rgba(10,11,12,0.25) 60%, rgba(10,11,12,0.05) 100%); }
.dl-band-inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 70px 32px; width: 100%; }
.dl-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; line-height: 1.15; max-width: 16ch; }
.dl-band a { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 26px; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 4px; }
.dl-band a:hover { border-color: #fff; }

/* ---------- Feature cards ---------- */
.dl-features { background: #fff; padding: 80px 0; }
.dl-feature-grid { max-width: 1240px; margin: 26px auto 0; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dl-fcard {
  background: linear-gradient(160deg, #1a1c1f 0%, #101113 100%);
  color: #fff; border-radius: 10px; padding: 28px 22px; min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  transition: transform 0.2s;
}
.dl-fcard svg { width: 30px; height: 30px; color: #9fd8e6; margin-bottom: auto; }
.dl-fcard h3 { font-size: 1rem; font-weight: 600; }
.dl-fcard p { font-size: 0.85rem; color: #b7bbbf; line-height: 1.6; }

/* ---------- Solar cross-sell ---------- */
.dl-eco { background: var(--dl-bg); padding: 84px 0; border-top: 1px solid var(--dl-line); }
.dl-eco-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.dl-eco h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 500; margin: 12px 0 16px; }
.dl-eco p { color: var(--dl-mut); line-height: 1.9; }
.dl-eco .huge { font-family: var(--font-head); font-size: clamp(4rem, 9vw, 7rem); font-weight: 500; color: var(--brand-deep); line-height: 1; }
.dl-eco .huge small { display: block; font-size: 1rem; color: var(--dl-mut); font-weight: 400; margin-top: 10px; }

/* ---------- Test ride form ---------- */
.dl-form { background: #fff; padding: 80px 0; border-top: 1px solid var(--dl-line); }
.dl-form-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: start; }
.dl-form h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; margin-top: 10px; }
.dl-form p.note { color: var(--dl-mut); margin-top: 12px; line-height: 1.8; }

.dl-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dl-field { display: flex; flex-direction: column; gap: 6px; }
.dl-field.full { grid-column: 1 / -1; }
.dl-field label { font-size: 0.8rem; color: var(--dl-mut); font-family: var(--font-head); }
.dl-field input, .dl-field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--dl-ink);
  padding: 13px 14px; border: 1px solid #d4d7da; border-radius: 6px; background: #fff;
}
.dl-field input:focus, .dl-field select:focus { outline: 2px solid var(--dl-ink); outline-offset: 0; border-color: var(--dl-ink); }
.dl-form .btn-dark { grid-column: 1 / -1; justify-content: center; cursor: pointer; border: none; font-size: 1rem; }
.dl-form-result {
  grid-column: 1 / -1; display: none;
  background: #fafbfb; border: 1px solid var(--dl-line); border-radius: 8px; padding: 16px 18px;
  font-size: 0.95rem; line-height: 1.8;
}
.dl-form-result.show { display: block; }

/* ---------- Pre-footer band ---------- */
.dl-outro { position: relative; min-height: 300px; display: flex; align-items: center; background: #101113 center/cover no-repeat; color: #fff; }
.dl-outro::before { content: ""; position: absolute; inset: 0; background: rgba(10,11,12,0.55); }
.dl-outro-inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 60px 32px; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.dl-outro h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 500; }
.dl-outro p { color: #c9ccd0; margin-top: 8px; }

/* ---------- Badge ---------- */
.dl-badge {
  font-size: 0.65rem; background: var(--dl-ink); color: #fff;
  border-radius: 999px; padding: 3px 10px; vertical-align: middle; letter-spacing: 0.08em;
}

/* ---------- Color swatches ---------- */
.dl-swatch-row { display: flex; align-items: center; gap: 12px; margin: 4px 0 14px; flex-wrap: wrap; }
.dl-swatch-row .sws { display: flex; gap: 8px; flex-wrap: wrap; }
.dl-swatch-row .sw {
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer; padding: 0;
  background: var(--sw); border: 2px solid #fff;
  box-shadow: 0 0 0 1px #c9ccd0, 0 1px 3px rgba(16,17,19,0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dl-swatch-row .sw:hover { transform: scale(1.15); }
.dl-swatch-row .sw.active { box-shadow: 0 0 0 2px var(--dl-ink); transform: scale(1.12); }
.dl-swatch-row .swn { font-size: 0.85rem; color: var(--dl-mut); font-family: var(--font-head); }

/* ---------- Model highlight thumbs ---------- */
.dl-feats { margin-top: 16px; }
.dl-feats .fk { font-size: 0.8rem; color: var(--dl-mut); font-family: var(--font-head); margin-bottom: 8px; }
.dl-feats .fts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.dl-feats .ft {
  border: none; padding: 0; cursor: pointer; border-radius: 8px; overflow: hidden;
  background: #e8eaec; aspect-ratio: 1; position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dl-feats .ft img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dl-feats .ft:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 18px rgba(16,17,19,0.18); }

/* ---------- LINE brand button ---------- */
.dl .btn-lineg {
  background: #06C755; color: #fff; border-radius: 4px; padding: 14px 26px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
}
.dl .btn-lineg:hover { background: #05b04c; color: #fff; transform: translateY(-1px); }
.dl .btn-lineg svg { flex: none; }

/* ---------- Floating LINE FAB ---------- */
.dl-line-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  width: 62px; height: 62px; border-radius: 50%;
  background: #06C755; color: #fff;
  box-shadow: 0 8px 24px rgba(6,199,85,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fab-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 1s backwards;
}
.dl-line-fab:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 28px rgba(6,199,85,0.55); }
.dl-line-fab .fab-label { font-family: var(--font-head); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; }
.dl-line-fab::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(6,199,85,0.5); animation: fab-pulse 2.4s ease-out infinite;
}
@keyframes fab-pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes fab-pulse { 0% { transform: scale(0.85); opacity: 1; } 70%, 100% { transform: scale(1.25); opacity: 0; } }

/* ---------- Tech cards (6) ---------- */
.dl-feature-grid.six { grid-template-columns: repeat(3, 1fr); }
.dl-tech-card {
  position: relative; border: none; cursor: pointer; border-radius: 12px; overflow: hidden;
  min-height: 210px; padding: 0; text-align: left;
  background-color: #101113; background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff; isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dl-tech-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,11,12,0) 30%, rgba(10,11,12,0.75) 100%);
  transition: background 0.25s ease;
}
.dl-tech-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(16,17,19,0.28); }
.dl-tech-card .tc-label {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.dl-tech-card .tc-plus {
  position: absolute; right: 14px; bottom: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 500; line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.dl-tech-card:hover .tc-plus { transform: rotate(90deg); background: rgba(255,255,255,0.3); }

/* ---------- Lightbox ---------- */
.dl-lightbox {
  position: fixed; inset: 0; z-index: 220; display: none;
  align-items: center; justify-content: center;
  background: rgba(12,13,14,0.86); backdrop-filter: blur(6px);
  padding: 24px;
}
.dl-lightbox.open { display: flex; animation: lb-in 0.25s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.dl-lightbox .lb-box { max-width: min(720px, 92vw); margin: 0; text-align: center; }
.dl-lightbox .lb-box img {
  max-width: 100%; max-height: 72vh; border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: lb-img 0.3s ease;
}
@keyframes lb-img { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.dl-lightbox figcaption { color: #d6d9db; margin-top: 14px; font-size: 0.95rem; line-height: 1.7; max-width: 60ch; margin-left: auto; margin-right: auto; }
.dl-lightbox figcaption .ct { color: #8a8f94; font-family: var(--font-head); font-size: 0.8rem; margin-left: 8px; }
.dl-lightbox .lb-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s;
}
.dl-lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }
.dl-lightbox .lb-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; flex: none;
  display: flex; align-items: center; justify-content: center; margin: 0 14px;
  transition: background-color 0.2s;
}
.dl-lightbox .lb-arrow:hover { background: rgba(255,255,255,0.2); }

/* ---------- Motion: scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- Motion: hero entrance ---------- */
.dl-hero .dl-kicker, .dl-hero h1, .dl-hero .dl-sub, .dl-hero .dl-hero-cta {
  animation: rise 0.8s cubic-bezier(0.22,1,0.36,1) backwards;
}
.dl-hero h1 { animation-delay: 0.1s; }
.dl-hero .dl-sub { animation-delay: 0.22s; }
.dl-hero .dl-hero-cta { animation-delay: 0.34s; }
.dl-hero-art img { animation: hero-float-in 1s cubic-bezier(0.22,1,0.36,1) 0.15s backwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes hero-float-in { from { opacity: 0; transform: translateX(40px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- Motion: model swap ---------- */
.dl-center img.swap-in { animation: swap-in 0.45s cubic-bezier(0.22,1,0.36,1); }
@keyframes swap-in { from { opacity: 0; transform: translateX(26px) scale(0.97); } to { opacity: 1; transform: none; } }
.dl-watermark.swap-wm { animation: wm-in 0.5s ease; }
@keyframes wm-in { from { opacity: 0; letter-spacing: 0.12em; } to { opacity: 1; letter-spacing: 0.04em; } }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .dl-hero .dl-kicker, .dl-hero h1, .dl-hero .dl-sub, .dl-hero .dl-hero-cta,
  .dl-hero-art img, .dl-center img.swap-in, .dl-watermark.swap-wm, .dl-line-fab { animation: none; }
  .dl-line-fab::after { animation: none; opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .dl-hero-inner, .dl-eco-inner, .dl-form-inner { grid-template-columns: 1fr; }
  .dl-hero-art { order: -1; }
  .dl-hero-art img { max-width: min(420px, 100%); max-height: 48vh; object-fit: contain; }
  .dl-stage { grid-template-columns: 1fr; min-height: 0; }
  .dl-side { display: none; }
  .dl-detail { grid-template-columns: 1fr; }
  .dl-feature-grid, .dl-feature-grid.six { grid-template-columns: 1fr 1fr; }
  .dl-stat-inner { grid-template-columns: 1fr; text-align: center; }
  .dl-stat .side-note { text-align: center; }
}

@media (max-width: 560px) {
  .dl-feature-grid { grid-template-columns: 1fr; }
  .dl-feature-grid.six { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dl-tech-card { min-height: 150px; }
  .dl-tech-card .tc-label { left: 12px; bottom: 10px; font-size: 0.88rem; }
  .dl-tech-card .tc-plus { right: 9px; bottom: 8px; width: 24px; height: 24px; font-size: 1rem; }
  .dl-fields { grid-template-columns: 1fr; }
  .dl-specs { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 0 16px; }
  .dl-specs .sp .v { font-size: 1.1rem; }
  .dl-hero { min-height: 0; }
  .dl-scroll { display: none; }
  .dl-feats .fts { grid-template-columns: repeat(3, 1fr); }
  .dl-arrow { width: 38px; height: 38px; }
  .dl-arrow.prev { left: 4px; }
  .dl-arrow.next { right: 4px; }
  .dl-center img { max-height: 250px; }
  .dl-line-fab { right: 14px; bottom: 14px; width: 56px; height: 56px; }
  .dl-lightbox { padding: 12px; }
  .dl-lightbox .lb-arrow { position: absolute; bottom: 18px; margin: 0; }
  .dl-lightbox .lb-arrow.prev { left: 18px; }
  .dl-lightbox .lb-arrow.next { right: 18px; }
  .dl-lightbox .lb-box img { max-height: 58vh; }
}
