/* ============================================================
   DistressStock V2 — light, neutral, Inter-only.
   Изолировано от V1 через .v2 body class.
   ============================================================ */

.v2 {
  --bg: #FFFFFF;
  --bg-2: #F7F8FA;
  --bg-3: #EEF1F4;
  --fg: #111315;
  --fg-muted: #5A6370;
  --fg-subtle: #8B94A0;
  --border: #E5E8EC;
  --border-strong: #D0D5DB;
  --ink: #111315;
  --hot: #D94B3E;
  --new: #2E7D5B;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(17,19,21,0.04);
  --shadow-md: 0 6px 20px rgba(17,19,21,0.06);
  --shadow-lg: 0 16px 40px rgba(17,19,21,0.10);
  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  margin: 0;
  font-family: var(--ff);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

.v2 * { box-sizing: border-box; }
.v2 a { color: inherit; text-decoration: none; }
.v2 img { max-width: 100%; display: block; }
.v2 button { font-family: inherit; cursor: pointer; }
.v2 input, .v2 select, .v2 textarea { font-family: inherit; font-size: inherit; color: inherit; }

.v2-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.v2-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.v2-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.v2-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
}
.v2-brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--ink);
  display: inline-block;
  position: relative;
}
.v2-brand-mark::after {
  content: ""; position: absolute; inset: 6px;
  background: #fff; border-radius: 2px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.v2-brand-text { color: var(--ink); }
.v2-lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.v2-lang {
  color: var(--fg-muted); padding: 4px 8px; border-radius: 6px;
  text-decoration: none; transition: background 120ms, color 120ms;
}
.v2-lang:hover { color: var(--ink); }
.v2-lang--active { color: var(--ink); background: var(--bg-3); }
.v2-lang-sep { color: var(--border); }
.v2-brand-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.05em;
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg-3); color: var(--fg-muted);
  text-transform: uppercase;
}
.v2-nav-link--muted {
  font-size: 13px; color: var(--fg-muted);
}
.v2-nav-link--muted:hover { color: var(--ink); }

/* ===== Catalog layout: left sticky sidebar + results ===== */
.v2-catalog-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 60px;
}

.v2-filters {
  position: sticky; top: 80px;
  align-self: start;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
.v2-filters::-webkit-scrollbar { width: 6px; }
.v2-filters::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

.v2-filters-form {
  display: flex; flex-direction: column; gap: 20px;
}
.v2-filters-header {
  display: flex; align-items: center; justify-content: space-between;
}
.v2-filters-title {
  font-size: 15px; font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.v2-filters-close {
  display: none;
  font-size: 22px; line-height: 1;
  background: none; border: none; color: var(--fg-muted);
  padding: 0; width: 32px; height: 32px;
}

.v2-fg {
  display: flex; flex-direction: column; gap: 8px;
}
.v2-fg-label {
  font-size: 11px; font-weight: 700;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-chip-row {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.v2-chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-size: 13px; font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.12s;
}
.v2-chip:hover { color: var(--ink); border-color: var(--border-strong); }
.v2-chip input { display: none; }
.v2-chip--active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.v2-searchbox {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}
.v2-searchbox input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px;
}

.v2-range {
  display: flex; gap: 6px; align-items: center;
  font-size: 13px; color: var(--fg-muted);
}
.v2-range input {
  width: 100%; padding: 8px 10px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; background: var(--bg);
}

.v2-fg--scroll .v2-checklist {
  max-height: 180px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 4px;
  scrollbar-width: thin;
}
.v2-checklist-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg); padding: 3px 0;
  cursor: pointer;
}

.v2-filters-actions {
  display: flex; gap: 8px; padding-top: 8px;
  border-top: 1px solid var(--border);
}
.v2-btn-reset {
  flex: 1; text-align: center;
  padding: 9px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.v2-btn-reset:hover { color: var(--ink); }
.v2-btn-apply {
  flex: 1;
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
}
.v2-btn-apply:hover { background: #000; }

/* ===== Results ===== */
.v2-results { min-width: 0; }
.v2-toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.v2-toolbar-count {
  font-size: 13px; color: var(--fg-muted);
}
.v2-toolbar-count strong { color: var(--ink); font-weight: 700; }
.v2-btn-filters-toggle {
  display: none;
  align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.v2-sort-select {
  margin-left: auto;
  font-size: 13px; padding: 8px 28px 8px 12px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%235A6370' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 10px center;
  appearance: none;
}

.v2-filters-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 70;
}
.v2-filters-backdrop--open { display: block; }

/* ===== Cards grid ===== */
.v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
}
.v2-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.v2-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.v2-card-media {
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.v2-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.v2-card-media-empty {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}

/* Rozetka-style swipe carousel on catalog card */
.v2-card-carousel { user-select: none; }
.v2-card-track {
  display: flex; width: 100%; height: 100%;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1);
}
.v2-card-slide {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.v2-card-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  font-size: 18px; color: var(--ink);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: var(--shadow-sm);
}
.v2-card:hover .v2-card-arrow { display: flex; }
.v2-card-arrow--prev { left: 8px; }
.v2-card-arrow--next { right: 8px; }
.v2-card-arrow:hover { background: #fff; }
.v2-card-arrow:disabled { opacity: 0.35; cursor: default; }
.v2-card-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
  padding: 4px 8px;
  background: rgba(17,19,21,0.4);
  border-radius: 999px;
  z-index: 2;
}
.v2-card-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: all 0.12s;
}
.v2-card-dot--on { background: #fff; width: 14px; border-radius: 999px; }

.v2-card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.v2-card-discount {
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--hot);
  text-transform: uppercase;
}
.v2-card-title {
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}
.v2-card-props {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 15px; color: var(--fg);
  line-height: 1.3;
}
.v2-card-props .v2-p {
  display: flex; gap: 8px; align-items: baseline;
}
.v2-card-props .v2-p-emoji {
  font-size: 15px; line-height: 1; flex-shrink: 0;
  width: 20px; display: inline-block;
}
.v2-card-prices {
  margin-top: 6px;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  line-height: 1.3;
}
.v2-card-prices .v2-p { display: flex; gap: 8px; align-items: baseline; }
.v2-card-prices .v2-p-emoji { width: 20px; font-size: 15px; }
.v2-card-prices .v2-p-op { color: var(--fg-muted); }
.v2-card-prices .v2-p-new { color: var(--ink); font-weight: 600; }
.v2-card-prices .v2-p-disc { color: var(--hot); font-weight: 600; }
.v2-card-prices .v2-p-market { color: var(--hot); font-weight: 600; }
.v2-card-prices .v2-p-note { color: var(--ink); font-weight: 600; }

/* YouTube embed внутри body_md (figure.tg-youtube) и legacy .v2-youtube */
.v2-unit-body figure.tg-youtube,
.v2-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.v2-unit-body figure.tg-youtube iframe,
.v2-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.v2-card-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: center;
}
.v2-card-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.v2-card:hover .v2-card-cta-btn {
  background: var(--ink); color: #fff;
}

.v2-empty {
  padding: 80px 20px;
  text-align: center;
  color: var(--fg-muted);
}
.v2-empty a {
  display: inline-block; margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
}

/* ============================================================
   Unit page
   ============================================================ */
.v2-unit {
  max-width: 720px; margin: 0 auto;
  padding: 24px 20px 80px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
}
.v2 a.v2-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 14px; font-weight: 700;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  letter-spacing: 0.02em;
}
.v2 a.v2-back-link:hover {
  background: #fff;
  color: var(--ink);
}
.v2-back-link--top {
  margin-bottom: 20px;
}
.v2-back-link-wrap {
  text-align: center;
  margin-top: 24px;
}

.v2-unit-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 30px; font-weight: 800;
  color: #222;
  margin: 18px 0 6px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.v2-unit-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #888;
  margin: 0 0 18px;
}

/* Slider (Rozetka-style) */
.v2-slider {
  position: relative;
  margin: 16px 0 24px;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  user-select: none;
}
.v2-slider-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
}
.v2-slider-slide {
  flex: 0 0 100%;
  width: 100%; height: 100%;
}
.v2-slider-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.v2-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background 0.12s;
}
.v2-slider-btn:hover { background: #fff; }
.v2-slider-btn--prev { left: 12px; }
.v2-slider-btn--next { right: 12px; }
.v2-slider-btn:disabled { opacity: 0.35; cursor: default; }
.v2-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  padding: 6px 10px;
  background: rgba(17,19,21,0.4);
  border-radius: 999px;
  z-index: 2;
}
.v2-slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  transition: background 0.12s, width 0.12s;
}
.v2-slider-dot--active { background: #fff; width: 18px; border-radius: 999px; }

.v2-slider-counter {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 500;
  background: rgba(17,19,21,0.6);
  color: #fff;
  border-radius: 999px;
  z-index: 2;
}

/* Bullet list (telegra.ph-style: Georgia bold italic, em-dash, generous spacing) */
.v2-bullets {
  list-style: disc outside;
  margin: 0; padding: 0 0 0 28px;
  font-size: 18px; line-height: 1.5;
  color: #222;
}
.v2-bullets li { padding-left: 6px; margin-bottom: 18px; }
.v2-bullets li strong em {
  font-style: italic; font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Price list (under SELLING PRICE) — Georgia regular, larger, generous */
.v2-price-list {
  list-style: disc outside;
  margin: 0 0 22px; padding: 0 0 0 28px;
  font-size: 18px; line-height: 1.5;
  color: #222;
}
.v2-price-list li { padding-left: 6px; margin-bottom: 14px; }

/* Divider */
.v2-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 40%;
  margin: 32px auto;
}

/* Section title (telegra.ph-style: Inter bold large) */
.v2-section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #222;
  margin: 26px 0 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* PP image / Keyplan image */
.v2-image-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.v2-image-block img {
  width: 100%; height: auto; display: block;
}
.v2-image-placeholder {
  padding: 60px 20px;
  text-align: center;
  color: var(--fg-subtle);
  font-size: 13px;
  font-style: italic;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-2);
}

/* Free-form body (populated by telegra.ph-style editor) */
.v2-unit-body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px; line-height: 1.6;
  color: #222;
}
.v2-unit-body p { margin: 0 0 18px; }
.v2-unit-body h2, .v2-unit-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; color: var(--ink);
  margin: 26px 0 14px; line-height: 1.2;
}
.v2-unit-body h2 { font-size: 28px; }
.v2-unit-body h3 { font-size: 22px; }
.v2-unit-body ul, .v2-unit-body ol { margin: 0 0 18px; padding-left: 28px; }
.v2-unit-body ul li, .v2-unit-body ol li { margin-bottom: 12px; }
.v2-unit-body blockquote {
  margin: 0 0 18px; padding-left: 14px;
  border-left: 3px solid var(--border-strong); color: var(--fg-muted);
}
.v2-unit-body strong { font-weight: 700; }
.v2-unit-body em { font-style: italic; }
.v2-unit-body a { color: #3b82f6; text-decoration: underline; }
.v2-unit-body hr {
  border: none; border-top: 1px solid #ccc; width: 40%;
  margin: 32px auto;
}
.v2-unit-body img {
  display: block; max-width: 100%;
  margin: 24px auto; border-radius: 4px;
}
.v2-unit-body figure { margin: 24px 0; text-align: center; }
.v2-unit-body figure img { margin: 0 auto; }
.v2-unit-body figure figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--fg-muted); margin-top: 8px;
}

/* Image block margins */
.v2-image-block { margin-bottom: 10px; }
.v2-image-block img { border-radius: 4px; }
.v2-image-placeholder { margin-bottom: 10px; }

/* Overview stack — photos sequentially full-width (telegra.ph-style) */
.v2-overview-stack {
  display: flex; flex-direction: column; gap: 12px;
}
.v2-overview-item img {
  width: 100%; height: auto; display: block;
  border-radius: 4px;
}

/* ===== Footer ===== */
.v2-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-2);
  font-size: 12px;
  color: var(--fg-muted);
}
.v2-footer-disclaimer { max-width: 820px; line-height: 1.5; margin: 0 0 8px; }
.v2-footer-copy { margin: 0; color: var(--fg-subtle); }

/* ===== Responsive: mobile = filter drawer, not sidebar ===== */
@media (max-width: 960px) {
  .v2-catalog-inner { grid-template-columns: 1fr; gap: 0; padding-top: 16px; }

  .v2-btn-filters-toggle { display: inline-flex; }

  .v2-filters {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--bg);
    padding: 20px;
    z-index: 80;
    max-height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.2s;
    box-shadow: var(--shadow-lg);
  }
  .v2-filters--open { transform: translateX(0); }
  .v2-filters-close { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 640px) {
  .v2-container { padding: 0 14px; }
  .v2-header-inner { height: 52px; }
  .v2-brand { font-size: 15px; }
  .v2-chip { font-size: 12.5px; padding: 5px 10px; }
  .v2-grid { grid-template-columns: 1fr; gap: 16px; }
  .v2-card-title { font-size: 17px; }
  .v2-card-props, .v2-card-prices { font-size: 15px; }
  .v2-unit-title { font-size: 22px; }
  .v2-slider { aspect-ratio: 4 / 3; border-radius: var(--radius); }
  .v2-slider-btn { width: 36px; height: 36px; }
}

/* ============================================================
   Unit page — top actions row (back link + PDF button)
   ============================================================ */
.v2-unit-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--ff);
}
.v2-pdf-btn {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent; color: var(--ink);
  font-size: 13px; font-weight: 600;
  font-family: var(--ff);
  transition: background 0.15s ease, color 0.15s ease;
}
.v2-pdf-btn:hover { background: var(--ink); color: #fff; }
.v2-pdf-btn:disabled { opacity: 0.6; cursor: progress; }
.v2-pdf-btn--ghost { text-decoration: none; }

.v2-unit-actions-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.v2-unit-actions--bottom { margin: 24px 0 8px; }

/* Amenities / extra sizes line */
.v2-amenities {
  list-style: none; padding: 0; margin: 14px 0 20px;
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  font-family: var(--ff);
  font-size: 14px;
}
.v2-amenities li {
  padding: 5px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
}

/* Hide navigation chrome while html2pdf is rendering the article to canvas */
.v2-pdf-rendering .v2-unit-actions,
.v2-pdf-rendering .v2-back-link-wrap,
.v2-pdf-rendering .v2-back-link { display: none !important; }

/* ============================================================
   Print / PDF — unit page only
   ============================================================ */
@media print {
  .v2-header,
  .v2-footer,
  .v2-unit-actions,
  .v2-back-link,
  .v2-back-link-wrap,
  .v2-pdf-btn {
    display: none !important;
  }
  .v2, body { background: #fff !important; }
  .v2-unit {
    max-width: none;
    margin: 0;
    padding: 0;
    color: #000;
  }
  .v2-unit-body img,
  .v2-image-block img,
  .v2-overview-item img {
    max-width: 100%;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .v2-section-title,
  .v2-unit-title {
    page-break-after: avoid;
    break-after: avoid;
  }
  a { color: inherit; text-decoration: none; }
  @page { margin: 15mm; }
}
