/* ============================================================
   COMPONENTS - nav, gantt, cards, marquee, lightbox, footer.
   Each block is labelled; find the component, edit in place.
   ============================================================ */

/* ============ PROGRESS BAR ============ */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass-hi));
  transform-origin: left;
  transform: scaleX(0);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  background: rgba(11, 25, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line-dark); background: rgba(11, 25, 18, 0.88); }

.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 15px var(--pad-x);
  display: flex; align-items: center; gap: 24px;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-right: auto;
  white-space: nowrap;
}
.nav-name em { color: var(--brass-hi); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream-70);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--brass-hi); border-bottom-color: var(--brass-hi); }

.chip-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid rgba(121, 179, 106, 0.35);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}
.chip-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--leaf);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(121, 179, 106, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(121, 179, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 179, 106, 0); }
}

/* the chip inside the menu is for the mobile panel only */
.nav-links .chip-live { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav .chip-live { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: var(--pine-900);
    border-left: 1px solid var(--line-dark);
    flex-direction: column; align-items: flex-start;
    gap: 8px;
    padding: 96px 34px 34px;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: -1;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 15px; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .nav-links .chip-live { display: inline-flex; margin-top: 22px; }
}

/* ============ MARQUEE (toolkit strip) ============ */
.marquee {
  overflow: hidden;
  background: var(--pine-950);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 17px 0;
}
.marquee-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marquee 46s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-45);
  display: inline-flex; align-items: center; gap: 34px;
  margin-right: 34px;   /* spacing lives inside the item so the loop wraps cleanly */
}
.marquee-item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
  opacity: 0.7;
}
.marquee-half { display: inline-flex; align-items: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-half { white-space: normal; flex-wrap: wrap; row-gap: 12px; padding: 0 var(--pad-x); }
  .marquee-half[aria-hidden="true"] { display: none; }
}

/* ============ GANTT BOARD ============ */
.gantt {
  background: var(--pine-950);
  border: 1px solid var(--pine-700);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 38px);
  position: relative;
  box-shadow: var(--shadow-lg);
  margin-bottom: 64px;
}
/* drafting registration marks, two corners */
.gantt::before, .gantt::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--brass);
  border-style: solid;
  opacity: 0.85;
}
.gantt::before { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; }
.gantt::after  { bottom: 12px; right: 12px; border-width: 0 1.5px 1.5px 0; }

.gantt-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px;
  margin-bottom: 30px;
}
.gantt-title {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
  margin-right: auto;
}
.gantt-legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--cream-45);
}
.gantt-legend span { display: inline-flex; align-items: center; gap: 7px; }
.gl-swatch { width: 16px; height: 9px; border-radius: 3px; flex: none; }
.gl-swatch--work  { background: linear-gradient(160deg, var(--brass-hi), var(--brass)); }
.gl-swatch--study { border: 1px solid var(--cream-45); background: rgba(242,238,223,0.07); }
.gl-swatch--now   { border-left: 2px dashed var(--leaf); width: 2px; height: 12px; border-radius: 0; }

.gantt-body {
  position: relative;
  /* vertical year gridlines; --cols is set from js */
  background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: calc(100% / var(--cols, 9)) 100%;
  padding-bottom: 6px;
}

.g-row { padding: 9px 0 13px; position: relative; }
.g-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--cream-70);
  margin-bottom: 7px;
  display: flex; flex-wrap: wrap; gap: 4px 10px;
}
.g-label .g-org { color: var(--cream); font-weight: 500; }
.g-label .g-dates { color: var(--cream-45); }

.g-track { position: relative; height: 20px; }
.g-bar {
  position: absolute; top: 0; height: 100%;
  border-radius: 5px;
  min-width: 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease), filter .25s;
  display: block;
}
.gantt.in .g-bar { transform: scaleX(1); }
.g-bar--work {
  background: linear-gradient(160deg, var(--brass-hi), var(--brass));
  box-shadow: 0 3px 12px rgba(194, 147, 47, 0.3);
}
.g-bar--study {
  border: 1px solid var(--cream-45);
  background: rgba(242, 238, 223, 0.07);
}
.g-bar:hover, .g-bar:focus-visible { filter: brightness(1.18); }
.g-bar--ongoing::after {
  content: "";
  position: absolute; right: -4px; top: 50%;
  width: 8px; height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse 2.2s ease-out infinite;
}

.g-now {
  position: absolute; top: -8px; bottom: 4px;
  border-left: 2px dashed var(--leaf);
  opacity: 0.85;
  pointer-events: none;
}
.g-now span {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--leaf);
}

.gantt-axis { position: relative; height: 26px; margin-top: 12px; border-top: 1px solid var(--line-dark); }
.gantt-axis span {
  position: absolute; top: 8px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--cream-45);
}
.gantt-axis span:first-child { transform: none; }
.gantt-hint {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--cream-45);
}
@media (max-width: 620px) {
  .gantt-axis span:nth-child(even) { display: none; }
}

/* ============ EXPERIENCE TIMELINE CARDS ============ */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--brass), var(--line-light));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.4s var(--ease);
}
.timeline.in::before { transform: scaleY(1); }

.tl-item { position: relative; padding: 0 0 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: -30px; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brass);
  border: 2.5px solid var(--ivory);
  box-shadow: 0 0 0 1.5px var(--brass);
}
.tl-node--hollow { background: var(--ivory); }

.tl-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}
.tl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 147, 47, 0.35);
}
.tl-logo {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-faint);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tl-logo img { max-width: 82%; max-height: 82%; object-fit: contain; }

.tl-head {
  display: flex; flex-wrap: wrap;
  align-items: baseline; gap: 6px 16px;
  margin-bottom: 3px;
}
.tl-org { font-family: var(--font-body); font-weight: 600; font-size: 19px; color: var(--ink); }
.tl-date {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.05em;
  color: var(--faint);
  margin-left: auto;
}
.tl-role { font-size: 14px; color: var(--mute); margin-bottom: 12px; }
.tl-desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; max-width: 640px; }
.tag-current {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid rgba(121, 179, 106, 0.45);
  border-radius: 999px;
  padding: 3px 9px;
  vertical-align: 2px;
}
.tl-item--light .tl-role { margin-bottom: 0; }

@media (max-width: 560px) {
  .tl-card { grid-template-columns: 1fr; padding: 22px; }
  .tl-logo { width: 48px; height: 48px; }
  .tl-date { margin-left: 0; width: 100%; }
}

/* ============ EDUCATION CARDS ============ */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.edu-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.edu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.edu-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.edu-logo {
  width: 52px; height: 52px; flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-faint);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.edu-logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.edu-org { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--ink); }
.edu-degree {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.03em;
  color: var(--brass-deep);
  margin-bottom: 12px;
}
.edu-desc { font-size: 14.5px; color: var(--ink-soft); }
.edu-thesis { font-size: 13.5px; color: var(--mute); margin-top: 12px; }
@media (max-width: 760px) { .edu-grid { grid-template-columns: 1fr; } }

/* ============ PROJECT CARDS (dark section) ============ */
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.proj-card {
  position: relative;
  background: var(--pine-900);
  border: 1px solid var(--pine-700);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.proj-card:hover { transform: translateY(-4px); border-color: rgba(194, 147, 47, 0.5); }
/* cursor spotlight, driven by --mx / --my from main.js */
.proj-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
              rgba(219, 174, 74, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.proj-card:hover::before { opacity: 1; }

.proj-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.proj-icon {
  width: 44px; height: 44px; flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pine-700);
  background: var(--pine-950);
  color: var(--brass-hi);
  display: flex; align-items: center; justify-content: center;
}
.proj-icon svg { width: 21px; height: 21px; }
.proj-title { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--cream); }
.proj-desc { font-size: 14.5px; color: var(--cream-70); margin-bottom: 20px; }

/* mini pipeline diagram */
.pipe {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 0;
  margin-bottom: 20px;
}
.pipe-node {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brass-soft);
  border: 1px solid rgba(194, 147, 47, 0.4);
  background: rgba(194, 147, 47, 0.07);
  border-radius: 6px;
  padding: 5px 9px;
  white-space: nowrap;
}
.pipe-link {
  flex: 1 0 16px;
  min-width: 16px; max-width: 42px;
  height: 1px;
  margin: 0 2px;
  background-image: linear-gradient(90deg, var(--brass) 55%, transparent 45%);
  background-size: 9px 1px;
  position: relative;
}
.pipe-link::after {
  content: "";
  position: absolute; right: -1px; top: -3px;
  border: 3.5px solid transparent;
  border-left-color: var(--brass);
}
.proj-card:hover .pipe-link { animation: pipeflow 0.7s linear infinite; }
@keyframes pipeflow { to { background-position: 9px 0; } }

@media (max-width: 760px) { .proj-grid { grid-template-columns: 1fr; } }

/* ============ COMPETITION CARDS ============ */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.comp-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.comp-media {
  position: relative;
  display: block; width: 100%;
  aspect-ratio: 16 / 9.4;
  overflow: hidden;
  padding: 0;
}
.comp-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.comp-card:hover .comp-media img { transform: scale(1.045); }
.comp-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 25, 18, 0.45));
  opacity: 0; transition: opacity .35s;
}
.comp-card:hover .comp-media::after { opacity: 1; }
.comp-count {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cream);
  background: rgba(11, 25, 18, 0.72);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 11px;
}
.comp-count svg { width: 13px; height: 13px; }

.comp-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.comp-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 14px;
  margin-bottom: 10px;
}
.comp-title { font-family: var(--font-body); font-weight: 600; font-size: 17.5px; color: var(--ink); }
.comp-desc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
@media (max-width: 760px) { .comp-grid { grid-template-columns: 1fr; } }

/* ============ CERTIFICATE CARDS ============ */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 147, 47, 0.4);
}
.cert-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--line-faint);
}
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cert-meta { padding: 16px 18px 18px; display: grid; gap: 3px; }
.cert-name { font-weight: 600; font-size: 13.5px; color: var(--ink); line-height: 1.4; }
.cert-issuer {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--faint);
}
@media (max-width: 980px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } }

/* ============ LINKEDIN POST CARDS ============ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-text { font-size: 14px; color: var(--ink-soft); flex: 1; }
.post-cap {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--brass-deep);
}
.post-cap svg { width: 13px; height: 13px; }
.post-connect { margin-top: 40px; text-align: center; }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ============ FOOTER ============ */
.footer {
  background: var(--pine-950);
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
}
.footer .container {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.05em;
  color: var(--cream-45);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 16, 11, 0.94);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-figure {
  max-width: min(1000px, 90vw);
  max-height: 84vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lb-figure img {
  max-width: 100%;
  max-height: calc(84vh - 60px);
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform .3s var(--ease);
}
.lightbox.open .lb-figure img { transform: scale(1); }
.lb-caption {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--cream-70);
  text-align: center;
}
.lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, color .25s, transform .25s;
}
.lb-close:hover { border-color: var(--brass); color: var(--brass-hi); transform: rotate(90deg); }
.lb-close svg { width: 18px; height: 18px; }
.lb-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, color .25s, background .25s;
}
.lb-arrow:hover { border-color: var(--brass); color: var(--brass-hi); background: rgba(194, 147, 47, 0.08); }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-arrow.hidden { display: none; }
.lb-dots {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 9px;
}
.lb-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-45);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.lb-dots span.active { background: var(--brass-hi); transform: scale(1.25); }
@media (max-width: 640px) {
  .lb-arrow { width: 40px; height: 40px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
