/* ==========================================================================
   Certum Project Portfolio — Public : CSS pane
   Every rule is scoped to .certum-portfolio so the theme is never restyled,
   and every critical property is declared explicitly so the theme cannot
   leak into the module.
   ========================================================================== */

/* the container in the HTML pane, before the script replaces its contents */
.cp-portfolio { display: block; width: 100%; }
.cp-loading {
  padding: 64px 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #6B6E73; text-align: center;
}
.cp-portfolio[data-cp-ready="1"] .cp-loading { display: none; }

.certum-portfolio {
  --cp-red: #7A0000;
  --cp-red-deep: #5C0000;
  --cp-ink: #17181A;
  --cp-ink-2: #232528;
  --cp-gray: #6B6E73;
  --cp-line: #D9D5D0;
  --cp-offwhite: #F4F2EF;
  --cp-white: #FFFFFF;
  --cp-sans: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, -apple-system, sans-serif;
  --cp-max: 1280px;
  --cp-pad: clamp(20px, 5vw, 64px);

  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--cp-ink);
  background: var(--cp-white);
  font-family: var(--cp-sans);
  font-size: 16px;
  line-height: 1.55;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.certum-portfolio *,
.certum-portfolio *::before,
.certum-portfolio *::after { box-sizing: border-box; }

/* Element resets use :where() so component classes below always win,
   while still outranking the theme's own element selectors. */
.certum-portfolio :where(p, h1, h2, h3, ul, dl, dd, figure) { margin: 0; padding: 0; }
.certum-portfolio :where(ul) { list-style: none; }
.certum-portfolio :where(img) { display: block; max-width: 100%; height: auto; border: 0; }
.certum-portfolio :where(button) {
  font: inherit; color: inherit; background: none; border: 0;
  margin: 0; padding: 0; cursor: pointer; text-align: left;
}
.certum-portfolio :where(a) { text-decoration: none; }
.certum-portfolio :focus-visible {
  outline: 2px solid var(--cp-red);
  outline-offset: 3px;
}
.cp-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.cp-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cp-red); line-height: 1.4;
}
.cp-eyebrow--light { color: #E8B8B8; }

.cp-section__title {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cp-ink);
  max-width: 22ch;
}

/* ------------------------------------------------------------------ hero */
.cp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 62vh, 640px);
  padding: var(--cp-pad);
  background: var(--cp-ink);
  overflow: hidden;
  isolation: isolate;
}
.cp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cp-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.55) 45%, rgba(10,10,11,0.30) 100%);
}
.cp-hero--flat .cp-hero__scrim {
  background:
    linear-gradient(115deg, rgba(122,0,0,0.55) 0%, rgba(23,24,26,0.96) 62%);
}
.cp-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--cp-max); margin: 0 auto;
}
.cp-hero__title {
  margin-top: 14px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cp-white);
  max-width: 16ch;
  text-wrap: balance;
}
.cp-hero__intro {
  margin-top: 20px;
  max-width: 62ch;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-wrap: pretty;
}

.cp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 30px; padding: 15px 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; line-height: 1;
  border: 1px solid transparent;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.cp-btn--primary { background: var(--cp-red); color: var(--cp-white); }
.cp-btn--primary:hover { background: var(--cp-white); color: var(--cp-ink); }

/* --------------------------------------------------------------- filters */
.cp-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--cp-pad) 0;
}
.cp-filter {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--cp-line);
  background: var(--cp-white);
  color: var(--cp-ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.2;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.cp-filter:hover { border-color: var(--cp-ink); }
.cp-filter.is-active {
  background: var(--cp-ink); border-color: var(--cp-ink); color: var(--cp-white);
}
.cp-filter__n {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--cp-gray);
}
.cp-filter.is-active .cp-filter__n { color: rgba(255,255,255,0.6); }

/* ------------------------------------------------------------------ grid */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) var(--cp-pad) clamp(56px, 7vw, 96px);
}
.cp-grid:focus { outline: none; }
.cp-card { min-width: 0; }
.cp-card[hidden] { display: none; }

.cp-card__btn {
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; height: 100%;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cp-card__btn:hover {
  border-color: var(--cp-ink);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.55);
  transform: translateY(-3px);
}
.cp-card__media {
  position: relative; display: block;
  aspect-ratio: 16 / 10; width: 100%;
  overflow: hidden; background: var(--cp-ink);
}
.cp-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.cp-card__btn:hover .cp-card__img { transform: scale(1.045); }
.cp-card__tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 9px 16px;
  background: var(--cp-red);
  color: var(--cp-white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; line-height: 1.2;
}
.cp-card__body {
  display: block;
  padding: clamp(20px, 2.2vw, 30px);
}
.cp-card__title {
  display: block;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cp-ink);
  text-wrap: balance;
}
.cp-card__meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--cp-gray);
}
.cp-card__metaitem { display: inline-block; }
.cp-card__metaitem + .cp-card__metaitem { position: relative; padding-left: 15px; }
.cp-card__metaitem + .cp-card__metaitem::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 5px; height: 1px; background: var(--cp-line);
}
.cp-card__summary {
  display: block; margin-top: 16px;
  font-size: 15px; line-height: 1.62; color: #45484C;
  text-wrap: pretty;
}
.cp-card__more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cp-red);
}
.cp-card__arrow {
  display: inline-block; width: 22px; height: 1px;
  background: var(--cp-red);
  transition: width .25s ease;
}
.cp-card__btn:hover .cp-card__arrow { width: 34px; }

/* image-free fallback */
.cp-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, rgba(255,255,255,0) 2px 11px),
    linear-gradient(150deg, #2A2C2F 0%, #17181A 55%, #300000 100%);
}
.cp-ph__mark {
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 800;
  letter-spacing: 0.38em; text-indent: 0.38em;
  color: rgba(255,255,255,0.9); line-height: 1;
}
.cp-ph__rule { display: block; width: 46px; height: 2px; background: var(--cp-red); }
.cp-ph__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  text-align: center; padding: 0 16px;
}

.cp-empty {
  grid-column: 1 / -1;
  padding: 48px 0;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cp-gray);
}

/* ---------------------------------------------------------- capabilities */
.cp-caps { background: var(--cp-offwhite); padding: clamp(56px, 7vw, 100px) var(--cp-pad); }
.cp-caps > .cp-section__title { max-width: var(--cp-max); margin: 0 auto; }
.cp-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  max-width: var(--cp-max);
  margin: clamp(32px, 4vw, 52px) auto 0;
}
.cp-cap { border-top: 2px solid var(--cp-red); padding-top: 22px; min-width: 0; }
.cp-cap__num {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--cp-red);
}
.cp-cap__title {
  margin-top: 10px;
  font-size: clamp(18px, 1.7vw, 23px); line-height: 1.2;
  font-weight: 800; text-transform: uppercase; color: var(--cp-ink);
}
.cp-cap__body {
  margin-top: 12px; font-size: 15px; line-height: 1.65;
  color: #45484C; max-width: 46ch; text-wrap: pretty;
}

/* -------------------------------------------------------------- contact */
.cp-contact { background: var(--cp-ink); padding: clamp(60px, 8vw, 112px) var(--cp-pad); }
.cp-contact__inner { max-width: var(--cp-max); margin: 0 auto; }
.cp-contact__title {
  font-size: clamp(32px, 5.4vw, 66px); line-height: 1.05;
  letter-spacing: -0.02em; font-weight: 800; text-transform: uppercase;
  color: var(--cp-white); max-width: 18ch; text-wrap: balance;
}
.cp-contact__body {
  margin-top: 18px; max-width: 56ch;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.62;
  color: rgba(255,255,255,0.72); text-wrap: pretty;
}
.cp-contact__links {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  margin-top: 34px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.certum-portfolio .cp-contact__link {
  font-size: clamp(15px, 1.5vw, 19px); font-weight: 700;
  letter-spacing: 0.02em; color: var(--cp-white);
  border-bottom: 2px solid var(--cp-red);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.certum-portfolio .cp-contact__link:hover { color: #E8B8B8; border-color: #E8B8B8; }

/* ---------------------------------------------------------------- modal */
.cp-modal { position: fixed; inset: 0; z-index: 2147483000; }
.cp-modal[hidden] { display: none; }
.cp-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(9,9,10,0.78);
  opacity: 0; transition: opacity .25s ease;
}
.cp-modal.is-open .cp-modal__backdrop { opacity: 1; }
.cp-modal__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(760px, 100%);
  background: var(--cp-white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(24px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.cp-modal.is-open .cp-modal__panel { transform: none; opacity: 1; }
.cp-modal__close {
  position: sticky; top: 0; left: 100%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  font-size: 26px; line-height: 1;
  background: var(--cp-ink); color: var(--cp-white);
  transition: background-color .2s ease;
}
.cp-modal__close:hover { background: var(--cp-red); }
.cp-modal__content { padding: 0 clamp(22px, 4vw, 56px) clamp(48px, 6vw, 80px); }

.cp-detail__title {
  margin-top: 12px;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.08;
  letter-spacing: -0.02em; font-weight: 800; text-transform: uppercase;
  color: var(--cp-ink); text-wrap: balance;
}
.cp-facts {
  display: flex; flex-wrap: wrap; gap: 10px 48px;
  margin-top: 24px; padding: 20px 0;
  border-top: 1px solid var(--cp-line);
  border-bottom: 1px solid var(--cp-line);
}
.cp-fact dt {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cp-gray);
}
.cp-fact dd { margin-top: 5px; font-size: 16px; font-weight: 600; color: var(--cp-ink); }
.cp-detail__h3 {
  margin-top: 34px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cp-red);
}
.cp-detail__body { margin-top: 12px; max-width: 66ch; }
.cp-detail__body p { margin: 0 0 14px; font-size: 16px; line-height: 1.7; color: #35383C; text-wrap: pretty; }
.cp-detail__body p:last-child { margin-bottom: 0; }
.cp-highlights {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px; margin-top: 26px;
}
.cp-highlights li {
  padding: 16px 18px;
  background: var(--cp-offwhite);
  border-left: 3px solid var(--cp-red);
  font-size: 14px; line-height: 1.5; color: #35383C;
}

/* gallery: layout adapts to the number of supplied images */
.cp-gallery { display: grid; gap: 14px; margin-top: 16px; }
.cp-gallery__item { position: relative; min-width: 0; overflow: hidden; background: var(--cp-offwhite); }
.cp-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.cp-gallery[data-count="1"] { grid-template-columns: 1fr; }
.cp-gallery[data-count="1"] .cp-gallery__item { aspect-ratio: 16 / 9; }
.cp-gallery[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.cp-gallery[data-count="2"] .cp-gallery__item { aspect-ratio: 4 / 3; }
.cp-gallery[data-count="3"] { grid-template-columns: repeat(2, 1fr); }
.cp-gallery[data-count="3"] .cp-gallery__item { aspect-ratio: 4 / 3; }
.cp-gallery[data-count="3"] .cp-gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.cp-gallery[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
.cp-gallery[data-count="4"] .cp-gallery__item { aspect-ratio: 4 / 3; }
.cp-gallery[data-count="5"] { grid-template-columns: repeat(6, 1fr); }
.cp-gallery[data-count="5"] .cp-gallery__item { grid-column: span 2; aspect-ratio: 4 / 3; }
.cp-gallery[data-count="5"] .cp-gallery__item:nth-child(1),
.cp-gallery[data-count="5"] .cp-gallery__item:nth-child(2) { grid-column: span 3; aspect-ratio: 3 / 2; }
.cp-gallery[data-count="6"] { grid-template-columns: repeat(3, 1fr); }
.cp-gallery[data-count="6"] .cp-gallery__item { aspect-ratio: 4 / 3; }

/* before / after */
.cp-ba { margin-top: 16px; }
.cp-ba__stage {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; background: var(--cp-ink); user-select: none;
}
.cp-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cp-ba__clip { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.cp-ba__clip .cp-ba__img { width: auto; height: 100%; }
.cp-ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; margin-left: -1px; background: var(--cp-white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
.cp-ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border-radius: 50%; background: var(--cp-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.cp-ba__tag {
  position: absolute; top: 12px; z-index: 2;
  padding: 6px 12px; background: rgba(9,9,10,0.72); color: var(--cp-white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.cp-ba__tag--l { left: 12px; }
.cp-ba__tag--r { right: 12px; }
.cp-ba__srlabel {
  display: block; margin-top: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cp-gray);
}
.cp-ba__range { display: block; width: 100%; margin-top: 8px; accent-color: #7A0000; }

/* ----------------------------------------------------------- responsive */
@media (max-width: 1024px) {
  .cp-caps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .cp-grid { grid-template-columns: minmax(0, 1fr); }
  .cp-caps__grid { grid-template-columns: minmax(0, 1fr); }
  .cp-highlights { grid-template-columns: minmax(0, 1fr); }
  .cp-gallery,
  .cp-gallery[data-count="2"],
  .cp-gallery[data-count="3"],
  .cp-gallery[data-count="4"],
  .cp-gallery[data-count="5"],
  .cp-gallery[data-count="6"] { grid-template-columns: minmax(0, 1fr); }
  .cp-gallery .cp-gallery__item,
  .cp-gallery[data-count="5"] .cp-gallery__item:nth-child(1),
  .cp-gallery[data-count="5"] .cp-gallery__item:nth-child(2),
  .cp-gallery[data-count="3"] .cp-gallery__item:first-child {
    grid-column: 1 / -1; aspect-ratio: 16 / 10;
  }
  .cp-modal__panel { width: 100%; }
  .cp-facts { gap: 16px 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .certum-portfolio *,
  .certum-portfolio *::before,
  .certum-portfolio *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* body lock while a modal is open (set by module.js) */
body.cp-scroll-locked { overflow: hidden !important; }

/* --------------------------------------------------------------------------
   Theme override: the CLEAN theme ships `img { height: auto !important; }`,
   which beats these components' `height: 100%` and leaves the dark card /
   hero background showing below wide photos. Re-assert cover-fill with a
   higher-specificity !important rule scoped to this module only.
   -------------------------------------------------------------------------- */
.certum-portfolio .cp-card__img,
.certum-portfolio .cp-hero__bg,
.certum-portfolio .cp-gallery__item img,
.certum-portfolio .cp-ba__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ==========================================================================
   Gallery lightbox — click any project photo to expand it full screen.
   Layered above .cp-modal (z-index 2147483000).
   ========================================================================== */

/* gallery tiles are buttons now; keep the existing tile geometry intact */
.certum-portfolio .cp-gallery__item {
  display: block; width: 100%;
  padding: 0; border: 0;
  cursor: zoom-in;
}
.cp-gallery__zoom {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(9,9,10,0.62);
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.cp-gallery__zoom::before,
.cp-gallery__zoom::after { content: ""; position: absolute; background: var(--cp-white); }
.cp-gallery__zoom::before { width: 14px; height: 2px; }
.cp-gallery__zoom::after { width: 2px; height: 14px; }
.cp-gallery__item:hover .cp-gallery__zoom,
.cp-gallery__item:focus-visible .cp-gallery__zoom { opacity: 1; transform: none; }

.cp-lightbox { position: fixed; inset: 0; z-index: 2147483100; }
.cp-lightbox[hidden] { display: none; }
.cp-lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(9,9,10,0.94);
  opacity: 0; transition: opacity .2s ease;
}
.cp-lightbox.is-open .cp-lightbox__backdrop { opacity: 1; }
.cp-lightbox__stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 64px);
  opacity: 0; transform: scale(0.985);
  transition: opacity .2s ease, transform .2s ease;
}
.cp-lightbox.is-open .cp-lightbox__stage { opacity: 1; transform: none; }
.certum-portfolio .cp-lightbox__img {
  display: block;
  width: auto !important; height: auto !important;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9);
}
.cp-lightbox__close,
.cp-lightbox__nav {
  position: absolute; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10);
  color: var(--cp-white);
  transition: background-color .2s ease;
}
.cp-lightbox__close:hover,
.cp-lightbox__nav:hover { background: var(--cp-red); }
.cp-lightbox__close { top: 0; right: 0; width: 56px; height: 56px; font-size: 26px; line-height: 1; }
.cp-lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 78px; font-size: 34px; line-height: 1;
}
.cp-lightbox__nav--prev { left: 0; }
.cp-lightbox__nav--next { right: 0; }
.cp-lightbox__close[hidden],
.cp-lightbox__nav[hidden],
.cp-lightbox__count[hidden] { display: none; }
.cp-lightbox__count {
  position: absolute; left: 0; right: 0; bottom: 16px;
  margin: 0; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}
@media (max-width: 640px) {
  .cp-lightbox__nav { width: 44px; height: 64px; font-size: 28px; }
  .cp-lightbox__stage { padding: 12px; }
}
