/* Farma Mokra SPA - warm farm palette + berry accents */
:root {
  --color-bg: #faf6f3;
  --color-bg-elevated: #fffdfa;
  --color-text: #1a241c;
  --color-muted: #5a6356;
  --color-berry: #e12d54;
  --color-berry-deep: #b92145;
  --color-berry-muted: #c94a68;
  --color-accent: var(--color-berry);
  --color-accent-soft: rgba(225, 45, 84, 0.13);
  --color-accent-glow: rgba(225, 45, 84, 0.22);
  --color-green: #1f6b42;
  --color-green-dark: #134028;
  --color-green-light: #2f855a;
  --color-cream-deep: #f0ebe5;
  --color-edge: rgba(31, 107, 66, 0.16);
  --shadow-sm: 0 2px 10px rgba(26, 36, 28, 0.06);
  --shadow-md: 0 10px 36px rgba(26, 36, 28, 0.1);
  --radius-lg: 20px;
  --radius-md: 12px;
  --font-sans:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    system-ui,
    sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", "Times", ui-serif, serif;
  --header-h: 72px;
  /* Výška fixní hlavičky: vnitřní blok + spodní rámeček + výřez displeje (notch) */
  --site-header-offset: calc(
    env(safe-area-inset-top, 0px) + var(--header-h) + 1px
  );
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  font-optical-sizing: auto;
}

body {
  margin: 0;
  padding-top: var(--site-header-offset);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
  color: var(--color-text);
  background:
    radial-gradient(1100px 520px at 8% -5%, rgba(225, 45, 84, 0.09), transparent 55%),
    radial-gradient(800px 480px at 96% 8%, rgba(31, 107, 66, 0.11), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(248, 200, 180, 0.12), transparent 45%),
    var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
  border: none;
  vertical-align: middle;
}

a {
  color: var(--color-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-berry-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-green);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: calc(1rem + var(--site-header-offset));
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(250, 246, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-edge);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  transition: transform 0.2s var(--ease);
}

.brand:hover {
  color: inherit;
}

.brand:active {
  transform: scale(0.99);
}

.brand__emblem {
  flex-shrink: 0;
  width: 5px;
  height: 2.85rem;
  border-radius: 999px;
  background: linear-gradient(
    168deg,
    var(--color-berry) 0%,
    var(--color-berry-deep) 32%,
    var(--color-green) 58%,
    var(--color-green-dark) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 2px 14px rgba(31, 107, 66, 0.2);
}

.brand__cluster {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand__title {
  display: block;
  line-height: 1.12;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 4.2vw, 1.92rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.015em;
  background: linear-gradient(
    118deg,
    var(--color-green-dark) 8%,
    var(--color-green) 38%,
    var(--color-green-light) 62%,
    var(--color-berry-muted) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Older browsers: solid color instead of clipped gradient */
@supports not (background-clip: text) {
  .brand__name {
    color: var(--color-green-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

.brand:hover .brand__name {
  filter: brightness(1.06);
}

.brand:hover .brand__emblem {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 4px 18px var(--color-accent-glow),
    0 2px 12px rgba(31, 107, 66, 0.18);
}

.brand__tagline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-berry-deep);
  font-weight: 600;
  opacity: 0.9;
  padding-left: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.site-header:has(.site-nav.nav-open) .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header:has(.site-nav.nav-open) .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header:has(.site-nav.nav-open) .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: center;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: var(--color-accent-soft);
  color: var(--color-berry-deep);
}

.site-nav a.is-active {
  background: linear-gradient(135deg, var(--color-berry-deep), var(--color-berry));
  color: #fff;
  box-shadow: 0 2px 12px var(--color-accent-glow);
}

.site-nav a.is-active:hover {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-berry-deep));
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 253, 250, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-edge);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.25s;
  }

  .site-nav.nav-open {
    max-height: 420px;
    opacity: 1;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
  }

  .site-nav a {
    border-radius: var(--radius-md);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand__emblem {
    height: 2.4rem;
  }

  .brand__name {
    font-size: clamp(1.38rem, 5.2vw, 1.72rem);
    letter-spacing: -0.016em;
  }
}

/* Main */
.main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  outline: none;
}

.page-intro {
  margin-bottom: 2rem;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.page-intro p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: min(380px, 55vh);
  background:
    linear-gradient(
      128deg,
      rgba(19, 64, 40, 0.88) 0%,
      rgba(31, 107, 66, 0.48) 38%,
      rgba(225, 45, 84, 0.42) 88%,
      rgba(248, 180, 160, 0.22) 100%
    ),
    url("picts/top.png") center / cover no-repeat;
  display: grid;
  place-items: end start;
}

.hero--fallback {
  background:
    linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 45%, var(--color-berry-deep) 100%),
    var(--color-bg);
}

.hero__inner {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  max-width: 560px;
}

.hero__pitch {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.32;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  white-space: pre-line;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    place-items: end center;
  }

  .hero__inner {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    padding-inline: clamp(1rem, 5vw, 1.5rem);
  }

  .hero__pitch {
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  position: relative;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(
      162deg,
      rgba(235, 60, 95, 0.46) 0%,
      rgba(195, 35, 75, 0.62) 48%,
      rgba(218, 50, 88, 0.42) 100%
    );
  backdrop-filter: saturate(155%) blur(14px);
  -webkit-backdrop-filter: saturate(155%) blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(26, 36, 28, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.16),
    0 8px 28px rgba(225, 45, 84, 0.24);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.btn--primary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(
      162deg,
      rgba(238, 70, 102, 0.58) 0%,
      rgba(205, 40, 82, 0.78) 50%,
      rgba(226, 58, 96, 0.52) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(26, 36, 28, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.18),
    0 12px 36px rgba(225, 45, 84, 0.3);
}

.btn--primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

/* Hero: v?razn?j?? kontrast sekund?rn?ch bublin v??i polopr?hledn?mu hlavn?mu */
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--neutral {
  background: var(--color-bg-elevated);
  color: var(--color-green-dark);
  border-color: var(--color-edge);
  box-shadow: var(--shadow-sm);
}

.btn--neutral:hover {
  background: #fff;
  color: var(--color-accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.split > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 840px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid var(--color-edge);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.card aside {
  font-style: italic;
  color: var(--color-muted);
}

.media-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-edge);
  background: var(--color-cream-deep);
}

.media-frame img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.map-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-edge);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Galerie ? m???ka n?hled? */
.gallery-page {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
}

@media (min-width: 720px) {
  .gallery-mosaic {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.gallery-tile {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: linear-gradient(145deg, #e9f2eb 0%, var(--color-cream-deep) 100%);
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 36, 25, 0.55));
  opacity: 0;
  transition: opacity 0.22s var(--ease);
  pointer-events: none;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
  outline: 2px solid var(--color-berry);
  outline-offset: 2px;
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile__hint {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%) translateY(0.35rem);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.gallery-tile:hover .gallery-tile__hint,
.gallery-tile:focus-visible .gallery-tile__hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
}

.site-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-top: 1px solid var(--color-edge);
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.95) 0%, rgba(248, 236, 232, 0.45) 100%);
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-inner p {
  margin: 0;
}

/* Prohl??e? fotografi? (fullscreen) */
.lightbox-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.lightbox-root.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-root__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.92);
  border: none;
  cursor: zoom-out;
}

.lightbox-root__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
  max-height: 100vh;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0)
    env(safe-area-inset-left, 0);
  pointer-events: none;
}

.lightbox-root__shell > * {
  pointer-events: auto;
}

.lightbox-root__toolbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
}

.lightbox-root__counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.lightbox-root__toolbar .lightbox-root__close {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.lightbox-root__toolbar .lightbox-root__close:hover,
.lightbox-root__toolbar .lightbox-root__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

.lightbox-root__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 0;
  padding: 0 0.35rem;
}

.lightbox-root__frame {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.lightbox-root__img {
  max-width: 100%;
  max-height: min(72vh, calc(100dvh - 200px));
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: opacity 0.22s var(--ease);
}

.lightbox-root__img.is-loading {
  opacity: 0.35;
}

.lightbox-root__spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lightbox-spin 0.7s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.lightbox-root__frame.is-busy .lightbox-root__spinner {
  opacity: 1;
}

@keyframes lightbox-spin {
  to {
    transform: rotate(360deg);
  }
}

.lightbox-root__prev,
.lightbox-root__next {
  flex-shrink: 0;
  position: static;
  transform: none;
  width: 48px;
  height: 48px;
  font-size: 1.85rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.15s;
}

.lightbox-root__prev:hover,
.lightbox-root__next:hover,
.lightbox-root__prev:focus-visible,
.lightbox-root__next:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}

.lightbox-root__strip-wrap {
  flex-shrink: 0;
  padding: 0.5rem 0 0.85rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.lightbox-root__strip {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.35rem 1rem 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
}

.lightbox-root__strip::-webkit-scrollbar {
  height: 6px;
}

.lightbox-root__strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 99px;
}

.lightbox-root__strip-item {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: center;
  background: #1a221c;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

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

.lightbox-root__strip-item:hover,
.lightbox-root__strip-item:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.lightbox-root__strip-item.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--color-accent);
}

@media (max-width: 640px) {
  .lightbox-root__prev,
  .lightbox-root__next {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .lightbox-root__strip-item {
    width: 56px;
    height: 56px;
  }

  .lightbox-root__img {
    max-height: min(62vh, calc(100dvh - 220px));
  }
}

.lead {
  font-size: 1.1rem;
}

.notice {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  background: var(--color-accent-soft);
  font-weight: 600;
}
