* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #121a17;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(180deg, #121a17 0%, #1a2421 100%);
  color: #fffef9;
  min-height: 100dvh;
  line-height: 1.45;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.icon {
  display: block;
  flex-shrink: 0;
}

/* ── Header ── */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px 10px;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  background: rgba(18, 26, 23, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.top__graffiti {
  display: block;
  width: min(280px, 78vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

@media (min-width: 520px) {
  .top__graffiti {
    width: min(340px, 70vw);
    max-height: 84px;
  }
}

/* ── Main grid ── */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 12px 28px;
}

@media (min-width: 768px) {
  .main {
    padding: 24px 20px 40px;
  }
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 520px) {
  .lang-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .lang-grid {
    gap: 20px;
  }
}

/* ── Language tile ── */
.lang-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 254, 249, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  transition: border-color 0.18s ease, background 0.18s ease;
}

@media (hover: hover) {
  .lang-tile:hover {
    border-color: rgba(201, 162, 39, 0.55);
    background: rgba(255, 254, 249, 0.07);
  }
}

.lang-tile--soon {
  opacity: 0.4;
}

.lang-tile__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lang-tile__flag {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}

@media (min-width: 520px) {
  .lang-tile__flag {
    width: 72px;
    height: 54px;
  }
}

.lang-tile__code {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff0b8;
  line-height: 1.1;
}

.lang-tile__cover {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.45);
  aspect-ratio: 210 / 297;
  background: #2d3b36;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.lang-tile__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.lang-tile__cover:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .lang-tile__cover:hover {
    border-color: rgba(232, 196, 90, 0.85);
  }

  .lang-tile__cover:hover .lang-tile__cover-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.lang-tile__cover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #1a2421;
  background: linear-gradient(180deg, #fff0b8 0%, #e8c45a 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.lang-tile__cover-icon .icon {
  width: 22px;
  height: 22px;
}

@media (hover: none) {
  .lang-tile__cover-icon {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
  }
}

.lang-tile__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lang-tile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 254, 249, 0.14);
  background: rgba(255, 254, 249, 0.06);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.18s ease;
}

.lang-tile__btn:active {
  transform: scale(0.96);
}

.lang-tile__btn .icon {
  width: 20px;
  height: 20px;
}

.lang-tile__btn--read {
  color: #e8d5a3;
}

.lang-tile__btn--dl.is-downloading {
  opacity: 0.55;
  pointer-events: none;
}

.lang-tile__btn--dl {
  width: 52px;
  height: 52px;
  color: #1a2421;
  background: #e8c45a;
  border-color: rgba(232, 196, 90, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

@media (hover: hover) {
  .lang-tile__btn--read:hover {
    background: rgba(255, 254, 249, 0.1);
    border-color: rgba(255, 254, 249, 0.22);
  }

  .lang-tile__btn--dl:hover {
    background: #f0d06a;
    border-color: rgba(255, 240, 184, 0.65);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3) inset,
      0 6px 20px rgba(201, 162, 39, 0.28);
  }
}

.lang-tile__soon {
  text-align: center;
  font-size: 24px;
  color: rgba(255, 254, 249, 0.4);
  padding: 24px 0;
}

/* ── Donate (default open) ── */
.donate {
  margin-top: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.donate__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.donate__toggle:hover {
  opacity: 0.85;
}

.donate__icon {
  font-size: 18px;
  color: #c9a227;
}

.donate__chevron {
  color: #c9a227;
  font-size: 14px;
  transition: transform 0.2s;
}

.donate:not(.donate--open) .donate__chevron {
  transform: rotate(-90deg);
}

.donate:not(.donate--open) .donate__body {
  display: none;
}

.donate__panel {
  background: rgba(255, 254, 249, 0.97);
  color: #1a2421;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.donate__flyer-hub {
  position: relative;
  overflow: hidden;
}

.donate__flyer-hub-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate__fan,
.donate__flyer-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0 10px;
  touch-action: manipulation;
}

.donate__fan--hero {
  width: 100%;
  padding-bottom: 4px;
}

.donate__fan--display {
  pointer-events: none;
  touch-action: none;
  padding: 0 0 2px;
}

.donate__fan--display .fan-carousel__meta,
.donate__fan--display .fan-carousel__nav,
.donate__fan--display .fan-carousel__actions {
  display: none !important;
}

.donate__fan--display .donate__fan-stack {
  margin-top: -4px;
  margin-bottom: -18px;
}

.donate__fan--display .donate-fan__card {
  bottom: clamp(22px, 5vw, 36px);
}

.donate__fan--display .donate__fan-glow {
  bottom: 24px;
}

.fan-carousel__viewport--display {
  padding: 0;
  cursor: default;
  touch-action: none;
}

.fan-carousel__viewport--display:active {
  cursor: default;
}

.donate__flyer-strip--below-fan {
  width: 100%;
  padding: 0 0 8px;
  border-top: 1px solid rgba(232, 196, 90, 0.22);
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.35) 0%, rgba(18, 26, 23, 0.72) 100%);
}

.flyer-scroll__hint {
  width: 100%;
  margin: 0;
  padding: 8px 16px 2px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 196, 90, 0.82);
}

.donate__flyer-strip--below-fan .flyer-scroll__card {
  width: clamp(120px, 28vw, 150px);
}

.donate__flyer-strip--below-fan .flyer-scroll-shell {
  padding: 0 clamp(40px, 9vw, 52px);
}

.donate__fan:focus-visible {
  outline: 2px solid rgba(232, 196, 90, 0.65);
  outline-offset: 4px;
  border-radius: 8px;
}

.donate__fan-bg {
  position: absolute;
  inset: 0;
  background:
    url('/images/spendenaufruf-bg.jpg') center 92% / cover no-repeat,
    linear-gradient(180deg, #1a2421 0%, #2a3530 55%, #1a2421 100%);
  filter: saturate(0.85);
}

.donate__fan-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 26, 23, 0.88) 0%,
    rgba(18, 26, 23, 0.42) 38%,
    rgba(18, 26, 23, 0.78) 100%
  );
}

.donate__fan-stage,
.donate__flyer-strip-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flyer-scroll-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(44px, 10vw, 56px);
}

.flyer-scroll-shell::before,
.flyer-scroll-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 18px;
  width: clamp(36px, 8vw, 48px);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.flyer-scroll-shell::before {
  left: clamp(44px, 10vw, 56px);
  background: linear-gradient(90deg, rgba(18, 26, 23, 0.92) 0%, transparent 100%);
  opacity: 1;
}

.flyer-scroll-shell::after {
  right: clamp(44px, 10vw, 56px);
  background: linear-gradient(270deg, rgba(18, 26, 23, 0.92) 0%, transparent 100%);
  opacity: 1;
}

.flyer-scroll-shell--start::before {
  opacity: 0;
}

.flyer-scroll-shell--end::after {
  opacity: 0;
}

.flyer-scroll__nudge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: clamp(40px, 9vw, 48px);
  height: clamp(52px, 12vw, 64px);
  border-radius: 14px;
  border: 2px solid #e8c45a;
  background: rgba(18, 26, 23, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e8c45a;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 254, 249, 0.08);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.flyer-scroll__nudge--prev {
  left: 4px;
}

.flyer-scroll__nudge--next {
  right: 4px;
}

.flyer-scroll__nudge:hover:not(:disabled) {
  background: rgba(42, 95, 66, 0.98);
  color: #fffef9;
  transform: translateY(-50%) scale(1.04);
}

.flyer-scroll__nudge:disabled {
  opacity: 0.35;
  cursor: default;
  border-color: rgba(232, 196, 90, 0.35);
}

.flyer-scroll {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  padding: 10px clamp(8px, 2vw, 14px) 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(8px, 2vw, 14px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: auto;
  scrollbar-color: #e8c45a rgba(255, 254, 249, 0.18);
}

.flyer-scroll::-webkit-scrollbar {
  height: 12px;
}

.flyer-scroll::-webkit-scrollbar-track {
  margin: 0 6px;
  background: rgba(255, 254, 249, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(232, 196, 90, 0.2);
}

.flyer-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #b8922a 0%, #e8c45a 55%, #f0d878 100%);
  border-radius: 999px;
  border: 2px solid rgba(18, 26, 23, 0.45);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.flyer-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #c9a227 0%, #f0d878 100%);
}

.flyer-scroll:focus-visible {
  outline: 2px solid rgba(232, 196, 90, 0.65);
  outline-offset: 2px;
  border-radius: 8px;
}

.flyer-scroll__card {
  flex: 0 0 auto;
  width: clamp(148px, 38vw, 188px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flyer-scroll__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.flyer-scroll__flag {
  width: 36px;
  height: 27px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(232, 196, 90, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.flyer-scroll__code {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e8c45a;
}

.flyer-scroll__links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.flyer-scroll__link {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid rgba(232, 196, 90, 0.45);
  background: rgba(18, 26, 23, 0.72);
  color: #fffef9;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.flyer-scroll__link:hover {
  border-color: #e8c45a;
  background: rgba(42, 95, 66, 0.88);
}

.flyer-scroll__link--dl {
  background: linear-gradient(135deg, #2a5f42 0%, #1f5c42 100%);
}

.flyer-scroll__cover {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(232, 196, 90, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.flyer-scroll__cover img {
  display: block;
  width: 100%;
  height: auto;
}

/* Broken cover: hide card entirely (no empty gold frame / broken-image icon) */
.flyer-scroll__card.is-cover-broken,
.lang-tile.is-cover-broken,
.donate-fan__card.is-cover-broken {
  display: none !important;
}

.flyer-scroll__cover:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.flyer-scroll__native {
  font-size: 0.72rem;
  color: rgba(255, 254, 249, 0.72);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .donate__fan {
    padding: 8px 0 12px;
  }
}

@media (min-width: 768px) {
  .donate__fan {
    padding: 10px 0 14px;
  }
}

.donate__fan-glow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 96vw);
  height: 90px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.55) 0%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.fan-carousel__viewport {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(56px, 13vw, 80px);
  touch-action: pan-x pinch-zoom;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.fan-carousel__viewport:active {
  cursor: grabbing;
}

.donate__fan-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: min(720px, 100%);
  height: min(72vw, 420px);
  margin: 0 auto;
}

@media (min-width: 400px) {
  .donate__fan-stack {
    height: min(68vw, 460px);
  }
}

@media (min-width: 520px) {
  .donate__fan-stack {
    height: 480px;
  }

  .donate__fan--display .donate__fan-stack {
    margin-bottom: -26px;
  }

  .donate__fan--display .donate-fan__card {
    bottom: 40px;
  }

  .donate__fan--display .donate__fan-glow {
    bottom: 32px;
  }
}

@media (min-width: 768px) {
  .donate__fan-stack {
    height: 520px;
  }

  .donate__fan--display .donate-fan__card {
    bottom: 48px;
  }

  .donate__fan--display .donate__fan-glow {
    bottom: 36px;
  }
}

.donate-fan__card {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(44vw, 178px);
  margin: 0;
  transform-origin: 50% 118%;
  transition: transform 0.35s ease;
}

@media (min-width: 400px) {
  .donate-fan__card {
    width: min(40vw, 200px);
  }
}

@media (min-width: 520px) {
  .donate-fan__card {
    width: 220px;
  }
}

@media (min-width: 768px) {
  .donate-fan__card {
    width: 240px;
  }
}

.donate-fan__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 2px solid rgba(232, 196, 90, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.donate-fan__label {
  position: absolute;
  top: 6px;
  display: block;
  line-height: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.donate-fan__card--edge-left .donate-fan__label {
  left: 6px;
  right: auto;
}

.donate-fan__card--edge-right .donate-fan__label {
  left: auto;
  right: 6px;
}

.donate-fan__label .donate-fan__flag {
  width: 40px;
  height: 30px;
  max-width: 40px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 2px solid rgba(232, 196, 90, 0.85);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

@media (min-width: 520px) {
  .donate-fan__label .donate-fan__flag {
    width: 44px;
    height: 33px;
    max-width: 44px;
  }
}

.donate-fan__card--center .donate-fan__label .donate-fan__flag {
  border-color: #e8c45a;
  box-shadow:
    0 3px 14px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 162, 39, 0.35);
}

.donate-fan__card--center {
  filter: drop-shadow(0 14px 28px rgba(201, 162, 39, 0.35));
}

.donate__fan:hover .donate-fan__card {
  transition-duration: 0.4s;
}

.donate-fan__card--clickable {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  text-align: inherit;
}

.donate-fan__card--clickable:focus-visible {
  outline: 2px solid #e8c45a;
  outline-offset: 3px;
  border-radius: 8px;
}

.fan-carousel__meta {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 120px;
  text-align: center;
  padding: 8px 12px 4px;
}

.fan-carousel__nav {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  pointer-events: none;
}

.fan-carousel__btn {
  pointer-events: auto;
  position: relative;
  z-index: 21;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: clamp(44px, 11vw, 52px);
  min-height: clamp(44px, 11vw, 52px);
  padding: 6px 4px 4px;
  border-radius: 14px;
  border: 2px solid rgba(232, 196, 90, 0.75);
  background: rgba(18, 26, 23, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fffef9;
  cursor: pointer;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.25);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.fan-carousel__btn-glyph {
  font-size: 1.35rem;
  line-height: 1;
}

.fan-carousel__btn-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8c45a;
  line-height: 1;
}

.fan-carousel__btn:hover {
  background: rgba(42, 95, 66, 0.95);
  border-color: #e8c45a;
  transform: scale(1.04);
}

.fan-carousel__label {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e8c45a;
}

.fan-carousel__native {
  font-size: 0.78rem;
  color: rgba(255, 254, 249, 0.72);
}

.fan-carousel__actions {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6px 12px 10px;
}

.fan-carousel__link {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(232, 196, 90, 0.45);
  background: rgba(18, 26, 23, 0.65);
  color: #fffef9;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fan-carousel__link:hover {
  border-color: #e8c45a;
  background: rgba(42, 95, 66, 0.85);
}

.fan-carousel__link--dl {
  background: linear-gradient(135deg, #2a5f42 0%, #1f5c42 100%);
}

.donate-fan__card.is-center {
  filter: drop-shadow(0 14px 28px rgba(201, 162, 39, 0.35));
}

.donate-fan__card.is-center .donate-fan__label .donate-fan__flag {
  border-color: #e8c45a;
  box-shadow:
    0 3px 14px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 162, 39, 0.35);
}

@media (max-width: 519px) {
  .fan-carousel__viewport {
    padding: 0 clamp(50px, 14vw, 64px);
  }

  .fan-carousel__btn {
    min-width: 42px;
    min-height: 42px;
    border-radius: 12px;
  }

  .fan-carousel__btn-label {
    font-size: 0.52rem;
  }

  .donate__fan-stack {
    height: min(82vw, 400px);
    max-width: 100%;
  }

  .donate-fan__card {
    width: min(52vw, 190px);
  }
}

.donate__cta {
  position: relative;
  padding: 20px 16px 24px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 162, 39, 0.18), transparent 55%),
    linear-gradient(180deg, #1a2421 0%, #121a17 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.donate__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.donate__purpose {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
  text-align: center;
}

.donate__purpose-de {
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff0b8;
}

.donate__purpose-en {
  font-size: clamp(0.85rem, 3.4vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(232, 213, 163, 0.9);
}

.donate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  font-size: 15px;
  font-weight: 700;
  color: #2a4a3c;
  background: linear-gradient(165deg, #fff9ee 0%, #f3e2b8 100%);
  border-radius: 12px;
  padding: 10px 14px 9px;
  border: 1px solid rgba(201, 162, 39, 0.42);
  box-shadow:
    0 4px 14px rgba(26, 36, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.donate__btn--primary {
  gap: 7px;
}

.donate__btn-heart {
  font-size: 14px;
  line-height: 1;
  color: #9a6b4a;
  flex-shrink: 0;
  margin-top: -1px;
}

.donate__btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.15;
  text-align: left;
}

.donate__btn-de {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.donate__btn-en {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(42, 74, 60, 0.68);
  white-space: nowrap;
}

.donate__btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(165deg, #fffdf6 0%, #f8ecc8 52%, #edd598 100%);
  box-shadow:
    0 10px 24px rgba(26, 36, 33, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.donate__btn:active {
  transform: translateY(0);
}

.donate__qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 254, 249, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.3);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.donate__qr-card:hover {
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-1px);
}

.donate__qr-card img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 2px solid #c9a227;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Partner-Footer — gedämpftes Panel (nicht reinweiß) */
.home-partners.finale-print__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 12px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d4cdc0 0%, #bdb5a6 100%);
  border: 1px solid rgba(42, 74, 60, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.home-partners .finale-print__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 6px;
  text-decoration: none;
  color: #2a4a3c;
  transition: opacity 0.15s ease;
}

.home-partners .finale-print__brand:hover {
  opacity: 0.88;
}

.home-partners .finale-print__brand-icon {
  display: block;
  height: 72px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(26, 36, 33, 0.2));
}

.home-partners .finale-print__brand-url {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.01em;
  color: #243d32;
}

.home-built-with {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 12px 6px;
  text-align: center;
  font-size: clamp(0.58rem, 1.6vw, 0.68rem);
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: rgba(255, 254, 249, 0.42);
}

.home-built-with a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.home-built-with a:hover {
  color: rgba(255, 254, 249, 0.68);
}

.grok-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 14px 14px 12px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.94) 0%, rgba(26, 36, 33, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.grok-credit--gallery {
  max-width: 420px;
  margin: 8px auto 28px;
}

.grok-credit__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fffef9;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.grok-credit__link:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.35));
}

.grok-credit__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.6);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 254, 249, 0.08);
}

.grok-credit--gallery .grok-credit__logo {
  width: 80px;
  height: 80px;
}

.grok-credit__brand {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e8c45a;
}

.grok-credit__thanks {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 254, 249, 0.84);
  max-width: 26rem;
}

.grok-credit__thanks a {
  color: #f3e2b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grok-credit__thanks a:hover {
  color: #fff9ee;
}

/* ── Top nav (hub + gallery) ── */
.top--nav {
  justify-content: center;
}

.top__cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  width: min(100%, 960px);
  margin: 0 auto;
}

.ui-lang {
  position: relative;
  margin-left: 4px;
}

.ui-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(255, 254, 249, 0.06);
  color: #fffef9;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.ui-lang__flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 254, 249, 0.2);
}

.ui-lang__chev {
  font-size: 0.65rem;
  opacity: 0.75;
}

.ui-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 180px;
  max-height: min(60vh, 320px);
  overflow: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: #1a2421;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.ui-lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #fffef9;
  font: inherit;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
}

.ui-lang__option:hover,
.ui-lang__menu [aria-selected='true'] .ui-lang__option {
  background: rgba(42, 95, 66, 0.55);
}

.ui-lang__native {
  flex: 1;
}

.ui-lang__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #e8c45a;
}

.top__home {
  display: flex;
  align-items: center;
}

.top__nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.top__link {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 254, 249, 0.75);
  transition: background 0.15s ease, color 0.15s ease;
}

.top__link:hover {
  color: #fffef9;
  background: rgba(255, 254, 249, 0.08);
}

.top__link--active {
  color: #1a2421;
  background: linear-gradient(135deg, #e8d5ad 0%, #c9a227 100%);
}

/* ── Gallery page ── */
.page-gallery .main.gallery-page {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-hero {
  text-align: center;
  margin-bottom: 22px;
}

.gallery-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 8px;
}

.gallery-hero__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.gallery-hero__lead {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 0.92rem;
  color: rgba(255, 254, 249, 0.72);
  line-height: 1.55;
}

.gallery-hero__ranking {
  margin: 10px auto 0;
  max-width: 48ch;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c9a227;
  letter-spacing: 0.02em;
}

.gallery-hero__imagine {
  margin: 8px auto 0;
  max-width: 54ch;
  font-size: 0.74rem;
  color: rgba(255, 254, 249, 0.55);
  line-height: 1.45;
}

.gallery-hero__imagine a {
  color: #d4c4a8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gallery-hero__imagine a:hover {
  color: #f0e6c8;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(255, 254, 249, 0.04);
  color: rgba(255, 254, 249, 0.82);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.gallery-filter--icon {
  min-width: 38px;
  min-height: 38px;
}

.gallery-filter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.gallery-filter:hover {
  border-color: rgba(201, 162, 39, 0.55);
}

.gallery-filter.is-active {
  background: linear-gradient(135deg, #2a5f42 0%, #1f5c42 100%);
  border-color: #3d8f66;
  color: #fffef9;
  transform: scale(1.06);
}

.gallery-count {
  font-size: 0.78rem;
  color: rgba(255, 254, 249, 0.5);
  font-weight: 600;
}

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

@media (min-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.page-gallery--named .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: center;
  justify-items: stretch;
}

@media (min-width: 520px) {
  .page-gallery--named .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 210px));
  }
}

@media (min-width: 900px) {
  .page-gallery--named .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 220px));
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: rgba(255, 254, 249, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(18, 26, 23, 0.92));
}

.gallery-item__caption {
  font-size: 0.72rem;
  line-height: 1.3;
  color: #fffef9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-item__tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.92);
  color: #1a2421;
}

.gallery-item__tag--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gallery-item__tag-icon {
  display: inline-flex;
}

.gallery-item__tag-icon svg {
  width: 14px;
  height: 14px;
}

.gallery-item__page {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.92);
  color: #1a2421;
}

.gallery-item__rank {
  position: absolute;
  bottom: 36px;
  left: 8px;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 999px;
  color: #1a2421;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.gallery-item__rank--gold { background: linear-gradient(135deg, #f6d66a, #c9a227); }
.gallery-item__rank--silver { background: linear-gradient(135deg, #e8edf2, #a8b4c2); }
.gallery-item__rank--bronze { background: linear-gradient(135deg, #e0b080, #b87333); }

.gallery-item__grok {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(26, 36, 33, 0.88);
  color: #c9a227;
  border: 1px solid rgba(201, 162, 39, 0.45);
  z-index: 2;
}

.gallery-item__page ~ .gallery-item__grok,
.gallery-item__grok + .gallery-item__page {
  /* page shifts right when grok badge present */
}

.gallery-item__page {
  z-index: 2;
}

.gallery-item__grok ~ .gallery-item__page {
  left: 52px;
}

.gallery-item__votes {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(42, 95, 66, 0.92);
  color: #fffef9;
}

.gallery-item--video .gallery-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(26, 36, 33, 0.78);
  color: #fffef9;
  font-size: 1rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  pointer-events: none;
}

.gallery-item__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 254, 249, 0.45);
}

.gallery-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 254, 249, 0.6);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 12, 10, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__figure {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img,
.lightbox__video {
  max-width: 100%;
  max-height: calc(88vh - 72px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__video {
  width: min(92vw, 1100px);
  background: #000;
}

.lightbox__caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 254, 249, 0.85);
  max-width: 60ch;
}

.lightbox__caption span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 254, 249, 0.55);
}

.lightbox__imagine {
  width: min(92vw, 720px);
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 254, 249, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.28);
  text-align: left;
}

.lightbox__imagine[hidden] {
  display: none;
}

.lightbox__imagine-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.lightbox__imagine-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lightbox__imagine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lightbox__imagine-copy,
.lightbox__imagine-link {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
}

.lightbox__imagine-copy {
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(26, 36, 33, 0.85);
  color: #fffef9;
  cursor: pointer;
}

.lightbox__imagine-link {
  background: linear-gradient(135deg, #2a5f42 0%, #1f5c42 100%);
  color: #fffef9;
  border: 1px solid #3d8f66;
}

.lightbox__imagine-de {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 254, 249, 0.88);
}

.lightbox__imagine-ref {
  margin: 0 0 6px;
  font-size: 0.68rem;
  color: rgba(255, 254, 249, 0.5);
}

.lightbox__imagine-prompt {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #c9a227;
  background: rgba(8, 12, 10, 0.45);
  border-radius: 0 8px 8px 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 254, 249, 0.82);
  white-space: pre-wrap;
}

.lightbox__close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 254, 249, 0.12);
  color: #fffef9;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(26, 36, 33, 0.85);
  color: #fffef9;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

/* ── Gallery visual-only (no text UI) ── */
.page-gallery--visual .top--minimal {
  justify-content: center;
  padding: 10px 16px 6px;
}

.page-gallery--visual .top__graffiti {
  max-height: 52px;
  width: auto;
}

.page-gallery--visual .main.gallery-page--visual {
  max-width: 1200px;
  padding: 8px 12px 24px;
}

.gallery-page--visual .gallery-controls--visual {
  justify-content: center;
  margin-bottom: 12px;
}

.gallery-page--visual .gallery-grid {
  display: grid;
}

.gallery-page--visual .gallery-item__meta,
.gallery-page--visual .gallery-item__tag,
.gallery-page--visual .gallery-item__page,
.gallery-page--visual .gallery-item__rank,
.gallery-page--visual .gallery-item__grok,
.gallery-page--visual .gallery-item__votes {
  display: none !important;
}

/* ── Gallery named captions + DE/EN ── */
.gallery-lang {
  display: inline-flex;
  gap: 4px;
}

.gallery-lang__btn {
  min-width: 40px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(255, 254, 249, 0.04);
  color: rgba(255, 254, 249, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.gallery-lang__btn.is-active {
  background: linear-gradient(135deg, #2a5f42 0%, #1f5c42 100%);
  border-color: #3d8f66;
  color: #fffef9;
}

.page-gallery--named .gallery-item__meta {
  display: block;
}

.page-gallery--named .lightbox__caption {
  display: block;
}

.lightbox--visual .lightbox__figure {
  max-height: 92vh;
}

.lightbox--visual .lightbox__img,
.lightbox--visual .lightbox__video {
  max-height: 92vh;
}

.lightbox--visual .lightbox__caption,
.lightbox--visual .lightbox__imagine {
  display: none !important;
}

