/* Journal detail — from proto/journal/1/article.css */
.lux-journal {
  --bg:      #f6f2ed;
  --bg-card: #fdfbf7;

  --ink:   #1a1613;
  --ink-2: #3a342e;
  --ink-3: #6b6259;
  --ink-4: #9a9187;

  --rule:     #e4ddd1;

  --accent:   oklch(0.58 0.11 25);
  --accent-2: oklch(0.52 0.12 25);
  --gold:     oklch(0.84 0.09 45);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --r-md: 10px;
  --t:    0.24s cubic-bezier(.2,.7,.2,1);

  --shadow-soft: 0 30px 60px -20px rgba(60,40,18,.55), 0 12px 24px -10px rgba(60,40,18,.40);
}

/*
  Макет деталки:
  — внешняя ширина от .container сайта
  — боковые отступы колонки (красные на прототипе): max 222px
    = (1320 − 28×2 − 820) / 2; на узких экранах меньше, чтобы колонка не сжималась
*/
.lux-journal {
  --journal-gutter: 222px;
  --journal-col-min: 820px;

  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: none;
  margin: 0;
  /* отступ от крошек без пунктира */
  padding: 32px 0 16px;
}
.lux-journal a   { color: inherit; text-decoration: none; }
.lux-journal em  { font-style: italic; }
.lux-journal img, .lux-journal svg { display: block; max-width: 100%; }

/* image */
.ph-img {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.ph-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* figure */
.fig { margin: 36px 0; }
.ph-img figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 18px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  background: linear-gradient(to top, rgba(26,22,19,0.9) 0%, rgba(26,22,19,0.5) 45%, transparent 100%);
  pointer-events: none;
}

/* video player */
.vp {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}
.vp.is-portrait {
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-inline: auto;
}
.vp-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vp-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 45%);
  transition: opacity var(--t);
  pointer-events: none;
}
.vp-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  transition: opacity var(--t);
}
.vp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: vp-blink 1.4s ease-in-out infinite; }
@keyframes vp-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.vp-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 44px 18px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  transition: opacity var(--t);
  pointer-events: none;
}
.vp-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vp-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--t), background var(--t);
}
.vp-play::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--gold);
}
.vp.is-playing .vp-scrim,
.vp.is-playing .vp-tag,
.vp.is-playing .vp-cap,
.vp.is-playing .vp-center { opacity: 0; pointer-events: none; }

@media (hover: hover) {
  .vp-play:hover { transform: scale(1.06); background: rgba(255,255,255,0.42); }
}
.vp-play:active { transform: scale(0.97); }

/* photo slider */
.sl {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.sl.is-portrait {
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-inline: auto;
}
/* fill-вариант слайдера: вписывает фото любых пропорций без обрезки (паспарту с размытым фоном) */
.sl--fill .sl-slide img { object-fit: contain; background: transparent; }
.sl--fill .sl-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: blur(22px) brightness(0.5);
  transform: scale(1.2);
}
/* fill-вариант для ОДИНОЧНЫХ фото любых пропорций (паспарту: размытый фон + contain) */
.ph-img--fill img { object-fit: contain; background: transparent; position: relative; z-index: 1; }
.ph-img--fill .ph-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: blur(22px) brightness(0.5);
  transform: scale(1.2);
}
/* помощник: вертикальная рамка 3:4 для одиночного портретного фото */
.ph-img--portrait { aspect-ratio: 3 / 4; max-width: 460px; margin-inline: auto; }
.sl-track { display: flex; height: 100%; transition: transform 0.45s cubic-bezier(.2,.7,.2,1); }
.sl-slide { position: relative; min-width: 100%; height: 100%; }
.sl-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sl-slide:not(.is-loading) img { opacity: 1; }
.sl-shimmer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, #1a1613 0%, #1a1613 28%, #322619 46%, #463524 50%, #322619 54%, #1a1613 72%, #1a1613 100%);
  background-size: 220% 100%;
  animation: sl-shim 1.5s linear infinite;
  transition: opacity 0.5s ease;
}
.sl-slide:not(.is-loading) .sl-shimmer { opacity: 0; }
@keyframes sl-shim { 0% { background-position: 130% 0; } 100% { background-position: -130% 0; } }
.sl-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(26,22,19,0.82) 0%, rgba(26,22,19,0.12) 42%, transparent 65%);
}
.sl-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(6px);
  font-variant-numeric: tabular-nums;
}
.sl-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 44px 18px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  pointer-events: none;
}
.sl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 0;
  color: #fff;
  padding-bottom: 3px;
  opacity: 0;
  cursor: pointer;
  transition: opacity var(--t), background var(--t);
}
.sl-arrow.prev { left: 12px; }
.sl-arrow.next { right: 12px; }
@media (hover: hover) {
  .sl:hover .sl-arrow { opacity: 1; }
  .sl-arrow:hover { background: rgba(255,255,255,0.42); }
}
@media (hover: none) { .sl-arrow { display: none; } }

/* lightbox — вне .lux-journal (в body), поэтому свои токены 1:1 с прототипом */
.slb {
  --gold:     oklch(0.84 0.09 45);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
  --t:    0.24s cubic-bezier(.2,.7,.2,1);

  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12,9,7,0.94);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.slb.is-open { display: flex; }
/* одиночное фото в лайтбоксе: прячем стрелки и счётчик */
.slb.is-single .slb-arrow, .slb.is-single .slb-counter { display: none; }
/* одиночные фото в статье кликабельны для увеличения */
.fig .ph-img { cursor: zoom-in; }
.slb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.slb-stage { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 16px; width: 100%; padding: 0 14px; }
.slb-center { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.slb-frame {
  position: relative;
  width: min(calc(100vw - 160px), calc(82vh * 4 / 3));
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  cursor: default;
}
.slb.is-portrait .slb-frame {
  width: min(calc(100vw - 160px), calc(82vh * 3 / 4));
  aspect-ratio: 3 / 4;
}
.slb-frame img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity 0.4s ease; }
.slb-frame img.is-loaded { opacity: 1; }
.slb-frame .sl-shimmer { z-index: 0; opacity: 1; }
.slb:not(.is-loading) .slb-frame .sl-shimmer { opacity: 0; }
.slb-close, .slb-arrow {
  border-radius: 50%;
  color: #fff;
  line-height: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  cursor: pointer;
}
.slb-close:hover, .slb-arrow:hover { background: rgba(255,255,255,0.2); }
.slb-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; font-size: 26px; z-index: 2; }
.slb-arrow { flex-shrink: 0; width: 52px; height: 52px; font-family: var(--serif); font-size: 34px; padding-bottom: 4px; }
.slb-counter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  cursor: default;
}
.slb-cap {
  width: 100%;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gold);
  cursor: default;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .slb-arrow { display: none; }
  .slb-stage { gap: 0; padding: 0 12px; }
  .slb-frame { width: min(calc(100vw - 24px), calc(82vh * 4 / 3)); }
  .slb.is-portrait .slb-frame { width: min(calc(100vw - 24px), calc(82vh * 3 / 4)); }
  .slb-cap { font-size: 16px; }
}

/* cta button */
.lux-journal a.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.lux-journal a.cta-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.lux-journal a.cta-btn .arr { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1; }

.cta-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.cta-center { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; }

/* подборка товаров (#BLOG_INSERT#) — вне .prose, как карусель на главной */
.journal-products {
  margin: 40px 0 8px;
}
.journal-products .lux-collection-carousel.section {
  margin: 0;
  padding: 0;
}
/* страховка: если карусель всё же попала в .prose — не применять стили заголовков статьи */
.prose .lux-collection-carousel .section-title,
.vg_body .prose .lux-collection-carousel .section-title {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

/* prose */
.prose {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}
.prose p { margin: 16px 0; text-wrap: pretty; }
.prose p strong, .prose li strong { font-weight: 600; color: var(--ink); font-style: normal; }
.prose p em { color: var(--accent-2); font-style: italic; }
/* контекстная ссылка в тексте */
.prose p a, .prose li a {
  color: var(--accent);
  border-bottom: 1px dashed color-mix(in srgb, var(--accent) 55%, transparent);
  transition: color var(--t), border-color var(--t);
}
@media (hover: hover) {
  .prose p a:hover, .prose li a:hover { color: var(--accent-2); border-bottom-color: var(--accent); }
}

.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 48px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.prose h2 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.prose h2 .htxt { display: block; text-wrap: wrap; }
.prose h2 .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 32px 0 12px;
}
.prose h3 em { font-style: italic; color: var(--accent-2); font-weight: 400; }

.prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.008em;
  background: #e9ede3;
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 36px 28px 22px;
  margin: 36px 0;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.prose blockquote::before {
  content: '\201C';
  position: absolute;
  top: 6px; left: 22px;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}
.prose blockquote cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-top: 14px;
}

.prose ul, .prose ol {
  font-family: var(--sans);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}
.prose ul li, .prose ol li {
  position: relative;
  padding: 6px 0 6px 28px;
  border-bottom: 1px dashed var(--rule);
}
.prose ul li:last-child, .prose ol li:last-child { border-bottom: none; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.prose ol { counter-reset: art-list; }
.prose ol li { padding-left: 36px; }
.prose ol li::before {
  counter-increment: art-list;
  content: counter(art-list, decimal-leading-zero);
  position: absolute;
  left: 0; top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* table */
.prose .table-wrap { margin: 24px 0; overflow-x: auto; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  min-width: 520px;
}
.prose th, .prose td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.prose thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  white-space: nowrap;
}
.prose tbody tr:last-child td { border-bottom: none; }
.prose tbody td:first-child { font-weight: 600; color: var(--ink); }
.prose tbody tr:nth-child(even) { background: #faf6ee; }

/* tip */
.tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #eef1f3;
  border: 1px solid #dadfe3;
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 28px 0;
  box-shadow: var(--shadow-soft);
}
.tip .ico { flex-shrink: 0; width: 22px; height: 22px; color: var(--ink); }
.tip .ico svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; }
.tip .copy .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tip .copy .txt { font-family: var(--serif); font-size: 17px; line-height: 1.5; color: var(--ink-2); }
.tip .copy .txt strong { font-weight: 600; color: var(--ink); }

/* author */
.author {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0 20px;
  align-items: center;
  background: #faf6ee;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-top: 48px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.author .avatar {
  grid-row: 1 / 3;
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.author .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author .copy { display: flex; flex-direction: column; gap: 4px; }
.author .copy .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.author .copy .nm { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.author .copy .role { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-3); }
.author .cta-link { align-self: center; }

/* related */
.related { margin-top: 56px; }
.related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  gap: 20px;
  flex-wrap: wrap;
}
.related-head .eb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.related-head h3 { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 36px); font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.related-head h3 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rel-card { display: flex; flex-direction: column; gap: 14px; }
.rel-card .ph-img { transition: transform var(--t); }
.rel-card .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.rel-card .meta .cat { color: var(--accent-2); }
.rel-card .meta .cat::before { content: '— '; }
.rel-card .title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.25; letter-spacing: -0.005em; }
.rel-card .title em { font-style: italic; color: var(--accent-2); font-weight: 400; }

/* hover-эффекты только при настоящем курсоре (не на тач-экранах) */
@media (hover: hover) {
  .lux-journal a.cta-btn:hover { background: var(--accent-2); transform: translateY(-1px); }
  .lux-journal a.cta-btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .cta-link:hover { color: var(--accent); border-color: var(--accent); }
  .author:hover { border-color: var(--accent); transform: translateY(-2px); }
  .author:hover .cta-link { color: var(--accent); border-color: var(--accent); }
  .rel-card:hover .ph-img { transform: translateY(-3px); }
  .rel-card:hover .title { color: var(--accent-2); }
  .prose tbody tr { transition: background var(--t); }
  .prose tbody tr:hover { background: #f3ece0; }
}
/* отклик на тап для тача */
.lux-journal a.cta-btn:active { transform: scale(0.97); }
.author:active { transform: translateY(-1px); }
.rel-card:active .ph-img { transform: translateY(-2px); }

/* variant G */
.vg {
  background: var(--bg-card);
  /* боковые отступы колонки — не больше 222px */
  padding: 56px min(var(--journal-gutter), max(20px, calc((100% - var(--journal-col-min)) / 2)));
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
}
.vg_top {
  max-width: none;
  width: 100%;
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.vg_top .topmeta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
  flex-wrap: wrap;
  gap: 12px;
}
.vg_top .topmeta .right { color: var(--ink-3); }
.vg_top .topmeta .cat   { color: var(--accent-2); }
.vg_top .art-h1  { font-size: clamp(40px, 5.4vw, 72px); margin-bottom: 18px; }
.vg_top .art-lead { font-size: clamp(20px, 2vw, 24px); max-width: 720px; }
.vg_body { max-width: none; width: 100%; margin: 0; }
.vg_body .prose h2 { border-top: 1px solid var(--rule); padding-top: 28px; margin-top: 48px; }
.vg_body .prose h2 .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--accent-2);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 0.9;
  position: relative;
  top: -3px;
}

.art-h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.art-h1 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.art-lead { font-family: var(--serif); font-style: italic; line-height: 1.45; color: var(--ink-3); }

@media (max-width: 820px) {
  .lux-journal { padding: 24px 0 8px; }

  .prose { font-size: 17px; }
  .prose h2 { flex-direction: column; align-items: flex-start; gap: 6px; }
  .prose h2 .num { font-size: 11px; }
  .prose blockquote { font-size: 20px; padding-left: 16px; }

  .author { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px; }
  .author .avatar { width: 64px; height: 64px; }
  .author .cta-link { grid-column: 1 / -1; width: fit-content; }

  .related-grid { grid-template-columns: 1fr; gap: 24px; }

  .vg { padding: 36px 20px 40px; }
  .vg_top .art-h1 { font-size: 36px; }
  .vg_body .prose h2 .num { font-size: 32px; }
  .vg_body .prose h2 { flex-direction: row; align-items: baseline; }

  /* таблица → карточки, без горизонтального скролла */
  .prose .table-wrap { overflow-x: visible; }
  .prose table { min-width: 0; }
  .prose thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); }
  .prose table, .prose tbody, .prose tr, .prose td { display: block; width: 100%; }
  .prose tbody tr {
    background: #faf6ee;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    padding: 14px 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
  }
  .prose tbody tr:last-child { margin-bottom: 0; }
  .prose tbody td { border-bottom: 1px dashed var(--rule); padding: 9px 0; }
  .prose tbody tr:last-child td { border-bottom: 1px dashed var(--rule); }
  .prose tbody tr td:last-child { border-bottom: none; padding-bottom: 0; }
  .prose tbody td:first-child {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--ink);
    padding-top: 0;
  }
  .prose tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
  }
}
