/* ══════════════════════════════════════════════════════════
   PROGRAM AKCIE
══════════════════════════════════════════════════════════ */
#program {
  background: #07080f;
  padding: clamp(4rem, 8vh, 7rem) clamp(1.25rem, 5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.program-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

/* Day columns */
.program-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.program-day {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.program-day__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.program-day__badge {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.program-day__badge--accent {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

.program-day__date {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Timeline */
.timeline {
  padding: 1.25rem 1rem 1.25rem 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 52px 16px 1fr;
  gap: 0 0.75rem;
  align-items: start;
  position: relative;
  padding-bottom: 1.25rem;
}

/* Connector line */
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(52px + 0.75rem + 7px);   /* time col + gap + half dot */
  top: 18px;
  width: 2px;
  height: calc(100% - 10px);
  background: rgba(255, 255, 255, 0.08);
}

.tl-time {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin-top: 3px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.tl-dot--accent {
  background: rgba(33, 150, 243, 0.25);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
}

.tl-body {
  padding-top: 0;
}

.tl-title {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.tl-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Program note */
.program-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   GALÉRIA
══════════════════════════════════════════════════════════ */
#galeria {
  background: var(--black);
  padding: clamp(4rem, 8vh, 7rem) clamp(1.25rem, 5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-filter {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75);
}

.gallery-filter.active {
  border-color: var(--blue);
  background: rgba(33, 150, 243, 0.12);
  color: var(--white);
}

/* ── Kategóriové karty ────────────────────────────────── */
.gallery-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  background: #0f1a2e;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.gallery-cat-card:hover,
.gallery-cat-card:focus-visible {
  transform: scale(1.02);
  border-color: rgba(33, 150, 243, 0.5);
  box-shadow: 0 0 16px rgba(33, 150, 243, 0.2);
}

.gallery-cat-card.active {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(33, 150, 243, 0.35);
}

.gallery-cat-card[hidden] {
  display: none;
}

.gallery-cat-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f1a2e;
}

.gallery-cat-thumb img,
.gallery-cat-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-cat-card:hover .gallery-cat-thumb img,
.gallery-cat-card:hover .gallery-cat-video {
  transform: scale(1.05);
}

.gallery-cat-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.25s;
}

.gallery-cat-card:hover .gallery-cat-play-overlay {
  opacity: 0.85;
}

.gallery-cat-label {
  padding: 0.65rem 0.9rem;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
}

/* ── Carousel ─────────────────────────────────────────── */
.gallery-carousel-wrap {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1a2e;
  border: 1px solid rgba(33, 150, 243, 0.2);
  animation: carouselReveal 0.3s ease both;
}

.gallery-carousel-wrap[hidden] {
  display: none;
}

@keyframes carouselReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-carousel-inner {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.gallery-carousel-nav {
  flex-shrink: 0;
  width: 52px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  z-index: 2;
}

.gallery-carousel-nav:hover {
  background: rgba(33, 150, 243, 0.2);
  color: var(--white);
}

.gallery-carousel-viewport {
  flex: 1;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.gallery-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #0f1a2e;
}

.gallery-carousel-img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.gallery-carousel-video {
  max-width: 100%;
  max-height: 60vh;
  display: block;
  border-radius: 2px;
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  flex-wrap: wrap;
}

.gallery-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.gallery-carousel-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

.gallery-carousel-dot:hover {
  background: rgba(33, 150, 243, 0.6);
}

/* ── Sociálne siete v galérii ─────────────────────────── */
.gallery-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.gallery-socials__label {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.gallery-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  border-radius: 6px;
  border: none;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.gallery-social-link--ig {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.07);
}

.gallery-social-link--ig:hover {
  background: rgba(225, 48, 108, 0.16);
}

.gallery-social-link--fb {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.07);
}

.gallery-social-link--fb:hover {
  background: rgba(24, 119, 242, 0.16);
}

@media (max-width: 768px) {
  .gallery-socials {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-socials__label {
    text-align: center;
  }

  .gallery-social-link {
    justify-content: center;
  }
}

/* ── Sekcia Plagát ──────────────────────────────────────── */
#plagat {
  padding: 5rem 0;
}

.plagat-section-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.plagat-section-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbIn 0.25s ease both;
}

@keyframes lbIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.15); }

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   PARTNERI & SPONZORI
══════════════════════════════════════════════════════════ */
#partneri {
  background: var(--black-2);
  padding: clamp(4rem, 8vh, 7rem) clamp(1.25rem, 5vw, 2rem);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.partners-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Skupinový nadpis ───────────────────────────────────── */
.sponsors-group-hdr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sponsors-group-hdr__label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.sponsors-group-hdr__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* ── Sponsors marquee ───────────────────────────────────── */
.sponsors-marquee-wrap {
  overflow: hidden;
  width: 100%;
  background: #111d33;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 3rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.sponsors-row-1,
.sponsors-row-2 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.sponsors-row-1 {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: scroll 20s linear infinite;
}

.sponsors-row-2 {
  padding: 1rem 0;
  animation: scroll 25s linear infinite;
}

.sponsors-marquee-wrap:hover .sponsors-row-1,
.sponsors-marquee-wrap:hover .sponsors-row-2 {
  animation-play-state: paused;
}

/* .spl = sponsor logo item — padding-right tvorí gap (zaručuje seamless translateX(-50%)) */
.spl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sponsors-row-1 .spl {
  padding-right: 80px;
}

.sponsors-row-2 .spl {
  padding-right: 40px;
}

.sponsors-row-1 .spl img {
  height: 173px;
  min-width: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sponsors-row-2 .spl img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .sponsors-row-1 .spl img { height: 112px; min-width: 60px; }
  .sponsors-row-2 .spl img { height: 54px; }
  .sponsors-row-1 .spl { padding-right: 40px; }
  .sponsors-row-2 .spl { padding-right: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .sponsors-row-1,
  .sponsors-row-2 { animation: none; }
}

/* ── Technickí partneri — karty ─────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.partner-card {
  background: rgba(33,150,243,0.04);
  border: 1px solid rgba(33,150,243,0.18);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}

.partner-card:hover {
  border-color: rgba(33,150,243,0.4);
  background: rgba(33,150,243,0.07);
}

.partner-card__badge {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(33,150,243,0.1);
  border: 1px solid rgba(33,150,243,0.25);
  border-radius: 2px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.partner-card__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.partner-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(33,150,243,0.1);
  border: 1px solid rgba(33,150,243,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.partner-card__name {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
}

.partner-card__logo-full {
  width: 100%;
  margin-bottom: 0.85rem;
}

.partner-card__logo-full-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
  filter: brightness(0.95);
}

.partner-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── Responsive ─────────────────────────────────────────── */

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

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: #03040a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 5vw, 2rem) clamp(1.5rem, 3vh, 2.5rem);
}

.footer-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.35));
}

.footer-tagline {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

/* Nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-link {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--white); }

/* Social */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-social__label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-social__links {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: var(--blue);
  background: rgba(33, 150, 243, 0.12);
  color: var(--white);
}

/* Partner bar */
.footer-partner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-partner__label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-partner__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-partner__logo svg {
  color: var(--blue);
}

.footer-partner__sep {
  color: rgba(255, 255, 255, 0.15);
}

.footer-partner__desc {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-condensed);
  letter-spacing: 0.04em;
}

.footer-bottom__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-link--sm {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .program-days {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-social {
    align-items: flex-start;
  }

  .footer-nav {
    align-items: flex-start;
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gallery-cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-carousel-nav {
    width: 40px;
    min-height: 45vw;
  }

  .gallery-carousel-viewport,
  .gallery-carousel-slide {
    min-height: 45vw;
  }

  .gallery-carousel-img,
  .gallery-carousel-video {
    max-height: 45vw;
  }
}

@media (max-width: 480px) {
  .gallery-cats {
    grid-template-columns: 1fr;
  }

  .gallery-carousel-nav {
    width: 36px;
    min-height: 60vw;
  }

  .gallery-carousel-viewport,
  .gallery-carousel-slide {
    min-height: 60vw;
  }

  .gallery-carousel-img,
  .gallery-carousel-video {
    max-height: 60vw;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-social {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
