/* ============================================================
 * Article (single.php) — clean, minimal, legal-tech.
 * Использует HSL-токены из custom.css (--primary, --secondary…).
 * Никаких градиентов, минимум теней, акцент на читабельности.
 * ============================================================ */
.dolgunet-article__prose ul li:not(.toc li),.dolgunet-article__prose ol li:not(.toc li){position:relative;padding-left:30px;margin-bottom:11px;}

:root{
  --article-content-width: 44rem;       /* ~704px — комфортная мера строки */
  --article-sidebar-width: 21.5rem;
  --article-gap: 3rem;
  --article-radius: 1rem;
  --article-radius-sm: .625rem;
  --article-prose-line: 1.75;
  --article-border: hsl(var(--border));
  --article-border-soft: hsl(var(--border) / .55);
  --article-bg: hsl(var(--background));
  --article-card: hsl(var(--card));
  --article-text: hsl(var(--foreground));
  --article-muted: hsl(var(--muted-foreground));
  --article-primary: hsl(var(--primary));
  --article-secondary: hsl(var(--secondary));
  --article-callout-info: 200 80% 96%;
  --article-callout-tip: 152 60% 95%;
  --article-callout-warn: 38 92% 95%;
  --article-callout-error: 0 84% 96%;
  --article-table-border: #d6def0;
  --ink: #0d2447;
  --navy: #143765;
  --navy2: #1d4d8c;
  --bg: #eef3fa;
  --bg2: #e6eef8;
  --paper: #fff;
  --muted: #5c6e88;
  --line: #e1e9f3;
  --line2: #c8d8ea;
  --accent: #1fa4e6;
  --accent2: #1480cb;
  --brass: #c79a3f;
  --green: #15a069;
  --red: #e0453f;
}

/* ========== Корневой layout ========== */
.dolgunet-article{
  background: var(--article-bg);
  color: var(--article-text);
}

.dolgunet-article__layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--article-gap);
  padding: 0 1rem 4rem;
}

.dolgunet-article__main{
  min-width: 0;
}

.dolgunet-article__sidebar{
  display: none;
}

@media (min-width: 1024px){
  .dolgunet-article__layout{
    grid-template-columns: minmax(0, 1fr) var(--article-sidebar-width);
    align-items: stretch; /* критично для sticky child внутри sidebar */
    padding-bottom: 6rem;
  }
  .dolgunet-article__main{
    max-width: calc(var(--article-content-width) + 4rem);
    margin: 0 auto;
  }
  .dolgunet-article__sidebar{
    display: block;
    order: 2;
    align-self: stretch;
    min-width: 0;
  }
}

@media (min-width: 1280px){
  .dolgunet-article__layout{
    gap: 4rem;
  }
}

/* ========== Reading progress bar ==========
 * Лежит на самом верху viewport (поверх header, под admin bar).
 * Так не дрейфует, когда тематический header скрывается при скролле вниз.
 * ================================================= */
.dolgunet-article-progress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 51;
  background: transparent;
  pointer-events: none;
}
body.admin-bar .dolgunet-article-progress{ top: 32px; }
@media screen and (max-width: 782px){
  body.admin-bar .dolgunet-article-progress{ top: 46px; }
}

.dolgunet-article-progress__bar{
  height: 100%;
  width: 0;
  background: var(--article-primary);
  transition: width .12s linear;
  transform-origin: 0 50%;
  will-change: width;
}

@media (prefers-reduced-motion: reduce){
  .dolgunet-article-progress__bar{ transition: none; }
}

/* ========== Hero ========== */
.dolgunet-article-hero{
  padding: 2rem 1rem 1.5rem;
}
@media (min-width: 1024px){
  .dolgunet-article-hero{
    padding: 3.5rem 1rem 2.5rem;
  }
}

.dolgunet-article-hero__inner{
  margin: 0 auto;
}
@media(max-width:545px){.container-narrow.dolgunet-article-hero__inner{padding-left:0;padding-right:0;}}

.dolgunet-article-hero__top{
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(260px, 35vw, 400px);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.dolgunet-article-hero__content{
  min-width: 0;
}
.dolgunet-article-hero__visual{
  --hero-visual-size: clamp(240px, 32vw, 400px);
  justify-self: end;
  margin-left: auto;
  width: var(--hero-visual-size);
  height: var(--hero-visual-size);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.dolgunet-article-hero__visual img,
.dolgunet-article-hero__visual .wp-post-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
}
@media (max-width: 900px){
  .dolgunet-article-hero__top{
    grid-template-columns: minmax(0,1fr);
    gap: 1rem;
  }
  .dolgunet-article-hero__content{ order: 1; }
  .dolgunet-article-hero__visual{
    order: 2;
    justify-self: center;
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .dolgunet-article-hero__visual img,
  .dolgunet-article-hero__visual .wp-post-image{
    object-position: center center;
  }
}


.dolgunet-article-breadcrumbs{
  margin-bottom: 1.25rem;
}
.dolgunet-article-breadcrumbs ol{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .35rem;
  font-size: .8125rem;
  color: var(--article-muted);
}
.dolgunet-article-breadcrumbs__item{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.dolgunet-article-breadcrumbs__item a{
  color: var(--article-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.dolgunet-article-breadcrumbs__item a:hover{
  color: var(--article-secondary);
}
.dolgunet-article-breadcrumbs__item.is-current{
  color: var(--article-text);
  font-weight: 600;
}
.dolgunet-article-breadcrumbs__sep{
  color: hsl(var(--muted-foreground) / .6);
  margin-left: .15rem;
}

/* RankMath breadcrumbs */
.dolgunet-article-breadcrumbs .rank-math-breadcrumb p{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .35rem;
  font-size: .8125rem;
  color: var(--article-muted);
}
.dolgunet-article-breadcrumbs .rank-math-breadcrumb a{
  color: var(--article-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.dolgunet-article-breadcrumbs .rank-math-breadcrumb a:hover{
  color: var(--article-secondary);
  text-decoration: underline;
}
.dolgunet-article-breadcrumbs .rank-math-breadcrumb .last{
  color: var(--article-text);
  font-weight: 600;
}
.dolgunet-article-breadcrumbs .rank-math-breadcrumb .separator{
  color: hsl(var(--muted-foreground) / .6);
  font-size: .75rem;
}

.dolgunet-article-hero__chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: hsl(var(--secondary));
  background: hsl(var(--accent));
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background .15s ease;
}
.dolgunet-article-hero__chip:hover{
  background: hsl(var(--accent) / .8);
}
.dolgunet-article-hero__chip-dot{
  width: .375rem;
  height: .375rem;
  border-radius: 999px;
  background: var(--article-primary);
}

.dolgunet-article-hero__title{
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.1;
  color: var(--article-secondary);
  max-width: 38ch;
}

.dolgunet-article-hero__divider{width:40px;height:3px;background:#c79a3f;margin:0 0 1.25rem;}
.dolgunet-article-hero__lead{
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--article-muted);
  margin: 0 0 1.75rem;
  text-wrap: balance;
}

.meta{
  display: flex;
  margin-top: 24px;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--article-border-soft);
  border-bottom: 1px solid var(--article-border-soft);
  justify-content: flex-end;
  flex-direction: column;
}
.meta-items{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1.1rem;
}
.mi{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8125rem;
  color: var(--article-muted);
}
.mi svg{ display: inline; color: #1480cb; flex: 0 0 auto; }
.mi b{ color: var(--article-text); font-weight: 600; }
.meta-author{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.meta-author .ava{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.meta-author .nm{
  font-size: .9rem;
  font-weight: 700;
  color: var(--article-secondary);
  line-height: 1.25;
}
.meta-author .rl{
  font-size: .78rem;
  color: var(--article-muted);
  line-height: 1.25;
}

.dolgunet-article-hero__cover{
  margin: 0 0 1.75rem;
}
.dolgunet-article-hero__cover-img{
  width: 100%;
  height: auto;
  border-radius: var(--article-radius);
  display: block;
  background: hsl(var(--muted));
}

.dolgunet-article-featured{
  margin: 0 0 2rem;
}
.dolgunet-article-featured__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--article-radius);
  background: hsl(var(--muted));
}

/* ========== TL;DR ========== */
.dolgunet-article-tldr{
  border-left: 5px solid #00a1e1;
  padding: 1.25rem 1.25rem 1.4rem;
  margin: 0 0 2rem;
}
@media (min-width: 768px){
  .dolgunet-article-tldr{ padding: 1.5rem 1.75rem 1.75rem; }
}

.dolgunet-article-tldr__head{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.dolgunet-article-tldr__chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .6rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--article-secondary);
  background: hsl(0 0% 100%);
  border-radius: 999px;
}
.dolgunet-article-tldr__title{
  margin: 0 0 .95rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--article-secondary);
  line-height: 1.2;
}
.dolgunet-article-tldr__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.dolgunet-article-tldr__item{
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: .65rem;
  align-items: start;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--article-text);
}
.dolgunet-article-tldr__bullet{
  color: var(--article-primary);
  margin-top: .2rem;
  flex-shrink: 0;
}

/* ========== TOC mobile (details/summary) ========== */
.dolgunet-article-toc--mobile{
  border: 1px solid var(--article-border-soft);
  border-radius: var(--article-radius-sm);
  background: var(--article-card);
  margin: 0 0 1.75rem;
}
@media (min-width: 1024px){
  .dolgunet-article-toc--mobile{ display: none; }
}

.dolgunet-article-toc__summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--article-secondary);
}
.dolgunet-article-toc__summary::-webkit-details-marker{ display: none; }
.dolgunet-article-toc__summary-text{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.dolgunet-article-toc__chevron{
  transition: transform .2s ease;
  color: var(--article-muted);
}
.dolgunet-article-toc--mobile[open] .dolgunet-article-toc__chevron{
  transform: rotate(180deg);
}


/* ========== TOC desktop (sidebar) ========== */
.dolgunet-article-toc--desktop .dolgunet-article-toc__title{
  margin: 0 0 .75rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--article-muted);
}
ol.dolgunet-article-toc__list {
  margin: 0;
  padding: 15px 0 30px;
  font-size: 17px;
}
ol.dolgunet-article-toc__list li {
  padding: 0 25px;
}



/* ========== Sidebar (sticky) ========== */
.post-side{position:sticky;top:90px;display:flex;flex-direction:column;gap:20px;}
.card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:20px;}
.card:has(.toc){max-height:475px;overflow-y:auto;}
.card-h{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:0 0 14px;display:flex;align-items:center;gap:8px;}
.card-h::before{content:"";width:14px;height:1px;background:var(--brass);}
.toc{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:3px;}
.toc a{display:flex;gap:10px;text-decoration:none!important;color:var(--muted);font-size:13.5px;line-height:1.4;padding:8px 10px;transition:.15s;border-left:2px solid transparent;}
.toc a .n{font-family:var(--mono);font-size:11px;color:var(--line2);font-weight:700;flex:0 0 auto;}
.toc a:hover{background:#f3f8fd;color:var(--navy);}
.toc a.active{background:#eef7fd;color:var(--navy);}
.toc a.active .n{color:var(--accent2);}
.side-cta{background:radial-gradient(120% 140% at 100% 0%,#1d4d8c,#143765 60%,#0d2447);color:#fff;border:0;text-align:center;}
.side-cta .ico{width:42px;height:42px;border-radius:13px;background:rgba(255,255,255,.12);display:grid;place-items:center;margin:0 auto 12px;color:#7fd4ff;}
.card.side-cta button{padding:12px 32px !important;}
.side-cta h4{font-family:var(--display);font-weight:800;color:#fff;font-size:20px;line-height:1.2;margin:0 0 8px;}
.side-cta p{color:#cfdef2;font-size:13.5px;margin:0 0 16px;}
.side-cta .btn{width:100%;}
.author-card{display:flex;flex-direction:column;align-items:center;text-align:center;}
.author-card .ava{width:72px;height:72px;border-radius:50%;background:#23436e center/cover;box-shadow:0 0 0 4px rgba(31,164,230,.14);margin-bottom:12px;}
.author-card .nm{font-weight:800;color:var(--navy);font-size:16px;}
.author-card .rl{font-family:var(--mono);font-size:10.5px;color:var(--accent2);letter-spacing:.02em;margin:3px 0 10px;}
.author-card p{font-size:13px;color:var(--muted);line-height:1.55;margin:0;}
.plist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;}
.plist li{padding:12px 0;border-bottom:1px dashed var(--line2);}
.plist li:first-child{padding-top:0;}
.plist li:last-child{border-bottom:0;padding-bottom:0;}
.plist a{text-decoration:none;color:var(--navy);font-weight:700;font-size:14px;line-height:1.4;transition:.15s;display:block;}
.plist a:hover{color:var(--accent2);}
.plist .pm{font-family:var(--mono);font-size:10.5px;color:#9aa8bb;margin-top:5px;}
.tags{display:flex;flex-wrap:wrap;gap:8px;}
.tags a{font-family:var(--mono);font-size:11.5px;color:var(--accent2);background:#eef7fd;border:1px solid #d7ecfa;padding:6px 11px;border-radius:20px;text-decoration:none;transition:.15s;}
.tags a:hover{background:var(--accent);color:#fff;border-color:var(--accent);}
@media(max-width:960px){.post-side{position:static;}.meta-items{margin-left:0;width:100%;}}
@media(max-width:560px){.cform .row{grid-template-columns:1fr;}.cm.nested{margin-left:18px;}}

main.dolgunet-article button,main.dolgunet-article .btn{padding:16px 30px;}

/* ========== Comments ========== */
.comments{margin-top:48px;}
.sec-h{display:flex;align-items:center;gap:12px;margin-bottom:24px;}
.sec-h h2{font-family:var(--display);font-weight:800;font-size:26px;margin:0;}
.sec-h .cnt{font-family:var(--mono);font-size:12px;color:#fff;background:var(--accent2);padding:4px 10px;border-radius:20px;}
.cform{background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px;margin-bottom:30px;}
.comments form#cform{margin-bottom:24px;}
.cform .row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px;}
.cform input,.cform textarea{width:100%;border:1.5px solid var(--line2);border-radius:11px;padding:12px 14px;font-family:inherit;font-size:14.5px;color:var(--navy);background:#fbfdff;}
.cform input:focus,.cform textarea:focus{outline:0;border-color:var(--accent);}
.cform textarea{min-height:110px;resize:vertical;margin-bottom:12px;}
.cform .foot{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.clist{display:flex;flex-direction:column;gap:18px;}
.cm{display:flex;gap:14px;}
.cm .ava{width:44px;height:44px;border-radius:50%;flex:0 0 auto;display:grid;place-items:center;color:#fff;font-weight:800;font-size:16px;}
.cm-b{flex:1;background:#fff;border:1px solid var(--line);border-radius:14px;padding:15px 17px;}
.cm-b .top{display:flex;align-items:center;gap:10px;margin-bottom:7px;flex-wrap:wrap;}
.cm-b .who{font-weight:800;color:var(--navy);font-size:14.5px;}
.cm-b .role{font-family:var(--mono);font-size:9.5px;letter-spacing:.05em;text-transform:uppercase;color:#fff;background:var(--brass);padding:3px 7px;border-radius:5px;}
.cm-b .dt{font-family:var(--mono);font-size:11px;color:#9aa8bb;margin-left:auto;}
.cm-b p{margin:0;color:#46576e;font-size:14.5px;line-height:1.6;}
.cm-b .reply{margin-top:9px;font-family:var(--mono);font-size:11px;color:var(--accent2);cursor:pointer;background:none;border:0;padding:0;}
.cm.nested{margin-left:42px;}
@media(max-width:560px){.cform .row{grid-template-columns:1fr;}.cm.nested{margin-left:18px;}}

/* ========== Share ========== */
.share{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:40px 0;padding:20px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.share .lab{font-family:var(--mono);font-size:11.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-right:4px;}
.sbtn{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line2);background:#fff;color:var(--navy);font-weight:700;font-size:13.5px;padding:10px 15px;border-radius:11px;cursor:pointer;text-decoration:none;transition:.18s;}
.sbtn:hover{border-color:var(--accent);color:var(--accent2);transform:translateY(-2px);}
.sbtn svg{flex:0 0 auto;}
.share a{line-height:1.5;}
.share button#shCopy{padding:10px 15px;}
.sbtn.tg:hover{color:#229ED9;border-color:#229ED9;}
.sbtn.vk:hover{color:#0077FF;border-color:#0077FF;}
.sbtn.wa:hover{color:#25D366;border-color:#25D366;}
#copyOk{font-family:var(--mono);font-size:11.5px;color:var(--green);opacity:0;transition:.2s;position:absolute;top:40px;white-space:nowrap;}
#copyOk.on{opacity:1;}

/* ========== Inline CTA (внутри статьи) ========== */
.dolgunet-article-cta{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.15rem;
  padding: 1.25rem;
  margin: 2rem 0;
  border-radius: var(--article-radius);
}
@media (min-width: 768px){
  .dolgunet-article-cta{
    grid-template-columns: auto 1fr auto;
    padding: 1.5rem 1.75rem;
  }
}

.dolgunet-article-cta--soft{
  background: hsl(var(--muted) / .55);
  border: 1px solid var(--article-border-soft);
}
.dolgunet-article-cta--primary{
  background: hsl(var(--accent));
  border: 1px solid hsl(var(--primary) / .2);
}

.dolgunet-article-cta__icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / .12);
  color: var(--article-primary);
  flex-shrink: 0;
}
.dolgunet-article-cta__body{ min-width: 0; }
.dolgunet-article-cta__title{
  margin: 0 0 .25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--article-secondary);
  line-height: 1.3;
}
.dolgunet-article-cta__text{
  margin: 0;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--article-muted);
}
.dolgunet-article-cta__action{
  grid-column: 1 / -1;
}
@media (min-width: 768px){
  .dolgunet-article-cta__action{ grid-column: auto; }
}
.dolgunet-article-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem 1.15rem;
  background: var(--article-primary);
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: .625rem;
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease;
  white-space: nowrap;
}
@media (min-width: 768px){
  .dolgunet-article-cta__btn{ width: auto; }
}
.dolgunet-article-cta__btn:hover{ filter: brightness(1.06); }
.dolgunet-article-cta__btn:active{ transform: translateY(1px); }
.dolgunet-article-cta__btn:focus-visible{
  outline: 2px solid var(--article-primary);
  outline-offset: 2px;
}

/* ========== Prose (контент статьи) ========== */
.dolgunet-article__prose{
  font-size: 1.0625rem;
  line-height: var(--article-prose-line);
  color: var(--article-text);
  max-width: var(--article-content-width);
}

.dolgunet-article__prose > * + *{
  margin-top: 1.25em;
}

.dolgunet-article__prose p{
  margin: 1.25em 0 0;
  text-wrap: pretty;
}

.dolgunet-article__prose h2{
  margin: 2.5em 0 .75em;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--article-secondary);
  letter-spacing: -0.015em;
  scroll-margin-top: 6rem;
  text-wrap: balance;
}

.dolgunet-article__prose h3{
  margin: 1.85em 0 .6em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--article-secondary);
  scroll-margin-top: 6rem;
  text-wrap: balance;
}

.dolgunet-article__prose h4{
  margin: 1.5em 0 .4em;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--article-secondary);
}

.dolgunet-article__prose ul,
.dolgunet-article__prose ol{
  margin: 1.25em 0 0;
}
.dolgunet-article__prose ol{
  display: block;
  list-style: decimal;
  padding-left: 1.75em;
}
.dolgunet-article__prose ol li{
  padding-left: 0.35em;
}
.dolgunet-article__prose ol li::marker{
  color: #1fa4e6;
  font-weight: 700;
}

.dolgunet-article__prose ul li::before{content:"";position:absolute;left:6px;top:10px;width:7px;height:7px;border-radius:2px;background:#1fa4e6;transform:rotate(45deg);}
.dolgunet-article__prose li > ul,
.dolgunet-article__prose li > ol{ margin: .35em 0; }

.dolgunet-article__prose strong{
  color: var(--article-secondary);
  font-weight: 700;
}

.dolgunet-article__prose a{
  color: var(--navy);
}
.dolgunet-article__prose a:hover{
  color: hsl(var(--primary) / .8);
  text-decoration-thickness: 2px;
}

.dolgunet-article__prose blockquote{
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--brass);
  background: linear-gradient(180deg, #fbfcfe, #f4f8fd);
  border-radius: 0 14px 14px 0;
}
.dolgunet-article__prose blockquote p{ margin: 0; }

.dolgunet-article__prose figure{ margin: 1.75em 0 0; max-width: 100%; }
.dolgunet-article__prose img{
  border-radius: var(--article-radius-sm);
  height: auto;
  max-width: 100%;
}
.dolgunet-article__prose figure img{ cursor: zoom-in; }
.dolgunet-article__prose figcaption{
  margin-top: .5rem;
  font-size: .8125rem;
  color: var(--article-muted);
  text-align: center;
}

body.dolgunet-lightbox-open{ overflow: hidden; }
.dolgunet-lightbox{
  position: fixed;
  inset: 0;
  z-index: 100200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 12, 24, .85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dolgunet-lightbox[hidden]{ display: none !important; }
.dolgunet-lightbox__inner{
  position: relative;
  width: 100%;
  max-width: min(96vw, 1400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.dolgunet-lightbox__img{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
}
.dolgunet-lightbox__caption{
  margin: 0;
  max-width: min(90vw, 900px);
  text-align: center;
  font-size: .9rem;
  color: #dbe9ff;
}
.dolgunet-lightbox__close{
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.dolgunet-lightbox__close:hover{
  background: rgba(255, 255, 255, .24);
  transform: scale(1.06);
}
@media (max-width: 560px){
  .dolgunet-lightbox{ padding: .75rem; }
  .dolgunet-lightbox__img{ max-height: calc(100dvh - 8rem); }
  .dolgunet-lightbox__close{ top: .75rem; right: .75rem; }
}

.dolgunet-article__prose code{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
  padding: .15em .4em;
  background: hsl(var(--muted));
  border-radius: .25rem;
}

.dolgunet-article__prose hr{
  margin: 2.5em 0;
  border: none;
  border-top: 1px solid var(--article-border);
}

/* ========== Tables (адаптивные) ========== */
.dolgunet-article__prose .wp-block-table{
  margin: 1.75em 0 0;
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.dolgunet-article__prose table{
  margin: 1.75em 0 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--article-table-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  background-clip: padding-box;
  font-size: .9375rem;
  color: #0f2d6a;
  display: table;
}
.dolgunet-article__prose .wp-block-table table{
  margin: 0;
}
.dolgunet-article__prose table thead{
  background: #0f2d6a;
}
.dolgunet-article__prose table th{
  text-align: left;
  font-weight: 700;
  color: #fff;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--article-table-border);
  border-right: 1px solid var(--article-table-border);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .75rem;
}
.dolgunet-article__prose table td{
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--article-table-border);
  border-right: 1px solid var(--article-table-border);
  vertical-align: top;
  font-weight: 600;
}
.dolgunet-article__prose .wp-block-table td,
.dolgunet-article__prose .wp-block-table th{
  border: 1px solid var(--article-table-border);
}
.dolgunet-article__prose table th:last-child,
.dolgunet-article__prose table td:last-child{
  border-right: 0;
}
.dolgunet-article__prose table tbody tr:last-child td{
  border-bottom: 0;
}
.dolgunet-article__prose table thead th:first-child{
  border-top-left-radius: 14px;
}
.dolgunet-article__prose table thead th:last-child{
  border-top-right-radius: 14px;
}

.dolgunet-article__prose table tbody tr:last-child td:last-child{
  border-bottom-right-radius: 14px;
}
.dolgunet-article__prose table tbody tr:hover{
  background: #f6fbfd;
}
.dolgunet-article__prose table tbody tr:nth-child(even){
  background: #f6fbfd;
}

@media (max-width: 640px){
  .dolgunet-article__prose .wp-block-table{
    overflow: visible;
  }

  .dolgunet-article__prose table{
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .dolgunet-article__prose table thead{
    display: none;
  }

  .dolgunet-article__prose table tbody,
  .dolgunet-article__prose table tr,
  .dolgunet-article__prose table td{
    display: block;
    width: 100%;
  }

  .dolgunet-article__prose table tr{
    margin: 0 0 1rem;
    border: 1px solid #d6def0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(15, 45, 106, 0.08);
  }

  .dolgunet-article__prose table tbody tr:last-child{
    margin-bottom: 0;
  }

  .dolgunet-article__prose table td{
    border: none;
    padding: .75rem 1rem;
    font-weight: 600;
  }

  .dolgunet-article__prose table td:first-child{
    background: #0f2d6a;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #d6def0;
  }
  .dolgunet-article__prose table td:first-child strong{
    color: #fff;
  }

  .dolgunet-article__prose table td:not(:first-child){
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #f6f8ff;
    border-top: 1px solid #e1e7f5;
  }

  .dolgunet-article__prose table td:not(:first-child)::before{
    content: attr(data-label);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #7b8bb3;
    font-weight: 700;
  }
}

/* ========== Article disclaimer (before first H2) ========== */
.dolgunet-article__prose .article-disclaimer{
  margin: 2rem 0;
  padding: 1.15rem 1.35rem;
  background: hsl(38 92% 95%);
  border: 1px solid hsl(38 92% 60% / .35);
  border-left: 3px solid hsl(38 92% 50%);
  border-radius: var(--article-radius-sm);
  color: var(--article-text);
}
.dolgunet-article__prose .article-disclaimer p{
  margin: 0;
  font-size: .9375rem;
  line-height: 1.6;
  color: #5a4a1e;
}
.dolgunet-article__prose .article-disclaimer strong{
  color: #7a5a10;
  font-weight: 700;
}
@media (max-width: 640px){
  .dolgunet-article__prose .article-disclaimer{
    padding: 1rem 1.1rem;
  }
  .dolgunet-article__prose .article-disclaimer p{
    font-size: .875rem;
  }
}

/* ========== Callouts =========
 * Можно использовать в редакторе через blockquote с классом, либо как:
 *   <div class="callout callout--tip"><p>…</p></div>
 *   <div class="callout callout--warning"><p>…</p></div>
 *   <div class="callout callout--error"><p>…</p></div>
 *   <div class="callout callout--info"><p>…</p></div>
 * Заголовок: первый <strong> внутри становится eyebrow-line.
 * ========== */
.dolgunet-article__prose .callout{
  margin: 1.75em 0 0;
  padding: 1rem 1.15rem 1.05rem 3rem;
  border-radius: var(--article-radius-sm);
  border: 1px solid transparent;
  position: relative;
  background: hsl(var(--article-callout-info));
  color: var(--article-text);
}
.dolgunet-article__prose .callout::before{
  content: '';
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.1rem;
}
.dolgunet-article__prose .callout > *:first-child{ margin-top: 0; }
.dolgunet-article__prose .callout p{ margin: .5em 0 0; }
.dolgunet-article__prose .callout > p:first-of-type{ margin-top: 0; }
.dolgunet-article__prose .callout strong:first-child{
  display: block;
  margin-bottom: .2rem;
  font-size: .8125rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* info / default */
.dolgunet-article__prose .callout--info,
.dolgunet-article__prose .callout{
  background: hsl(var(--article-callout-info));
  border-color: hsl(197 100% 70% / .35);
}
.dolgunet-article__prose .callout--info strong:first-child{ color: hsl(197 100% 30%); }
.dolgunet-article__prose .callout--info::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230070a8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 16v-4'/><path d='M12 8h.01'/></svg>");
}

/* tip / совет юриста */
.dolgunet-article__prose .callout--tip{
  background: hsl(var(--article-callout-tip));
  border-color: hsl(152 60% 55% / .35);
}
.dolgunet-article__prose .callout--tip strong:first-child{ color: hsl(152 60% 30%); }
.dolgunet-article__prose .callout--tip::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316704a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18h6'/><path d='M10 22h4'/><path d='M2 9a7 7 0 0 1 14 0c0 4-3 4-3 8H5c0-4-3-4-3-8Z'/></svg>");
}

/* warning / важно */
.dolgunet-article__prose .callout--warning{
  background: hsl(var(--article-callout-warn));
  border-color: hsl(38 92% 55% / .4);
}
.dolgunet-article__prose .callout--warning strong:first-child{ color: hsl(28 92% 35%); }
.dolgunet-article__prose .callout--warning::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b46708' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z'/><line x1='12' x2='12' y1='9' y2='13'/><line x1='12' x2='12.01' y1='17' y2='17'/></svg>");
}

/* error / ошибка */
.dolgunet-article__prose .callout--error{
  background: hsl(var(--article-callout-error));
  border-color: hsl(0 84% 70% / .35);
}
.dolgunet-article__prose .callout--error strong:first-child{ color: hsl(0 70% 40%); }
.dolgunet-article__prose .callout--error::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b91c1c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='15' x2='9' y1='9' y2='15'/><line x1='9' x2='15' y1='9' y2='15'/></svg>");
}

/* ========== Author card (после контента) ========== */
.dolgunet-article-author{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem;
  margin-top: 2.5rem;
  background: var(--article-card);
  border: 1px solid var(--article-border-soft);
  border-radius: var(--article-radius);
}
.dolgunet-article-author__avatar{
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  object-fit: cover;
  background: hsl(var(--muted));
}
.dolgunet-article-author__eyebrow{
  margin: 0 0 .15rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--article-muted);
}
.dolgunet-article-author__name{
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--article-secondary);
  line-height: 1.25;
}
.dolgunet-article-author__role{
  margin: .15rem 0 0;
  font-size: .875rem;
  color: var(--article-muted);
}
.dolgunet-article-author__bio{
  margin: .55rem 0 0;
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--article-text);
}

/* ========== FAQ accordion ========== */
.dolgunet-article-faq{
  margin-top: 3rem;
}
.dolgunet-article-faq__head{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.dolgunet-article-faq__chip{
  display: inline-flex;
  align-items: center;
  padding: .25rem .6rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--article-primary);
  background: hsl(var(--primary) / .12);
  border-radius: 999px;
}
.dolgunet-article-faq__title{
  margin: 0;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--article-secondary);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.dolgunet-article-faq__list{
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.dolgunet-article-faq__item{
  border: 1px solid var(--article-border-soft);
  border-radius: var(--article-radius-sm);
  background: var(--article-card);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dolgunet-article-faq__item[open]{
  border-color: hsl(var(--primary) / .35);
}
.dolgunet-article-faq__q{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--article-secondary);
  line-height: 1.4;
}
.dolgunet-article-faq__q::-webkit-details-marker{ display: none; }
.dolgunet-article-faq__q:focus-visible{
  outline: 2px solid var(--article-primary);
  outline-offset: -2px;
}
.dolgunet-article-faq__q-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: hsl(var(--muted));
  color: var(--article-secondary);
  transition: transform .25s ease, background-color .15s ease;
  flex-shrink: 0;
}
.dolgunet-article-faq__item[open] .dolgunet-article-faq__q-icon{
  transform: rotate(45deg);
  background: hsl(var(--primary) / .12);
  color: var(--article-primary);
}
.dolgunet-article-faq__a{
  padding: 0 1.15rem 1.1rem;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--article-text);
}
.dolgunet-article-faq__a p{ margin: 0 0 .75em; }
.dolgunet-article-faq__a p:last-child{ margin: 0; }

@media (prefers-reduced-motion: reduce){
  .dolgunet-article-faq__q-icon{ transition: none; }
}

/* ========== Related ========== */
.dolgunet-article-related{
  padding: 3.5rem 1rem;
  background: #eef3fa;
  border-top: 1px solid var(--article-border-soft);
}
.dolgunet-related-swiper-controls:has(.swiper-pagination-lock){display:none !important;}
.dolgunet-related-swiper-controls:has(.swiper-button-lock){display:none !important;}
.dolgunet-article-related__head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dolgunet-article-related__title{
  margin: 0;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--article-secondary);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.dolgunet-article-related__more{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--article-primary);
  text-decoration: none;
}
.dolgunet-article-related__more:hover{ text-decoration: underline; }

/* Swiper carousel wrapper */
.dolgunet-related-swiper{
  overflow: hidden;
  width: 100%;
}
.dolgunet-related-swiper .swiper-wrapper{
  align-items: stretch;
}
.dolgunet-related-swiper .swiper-slide{
  height: auto;
  box-sizing: border-box;
}

/* Controls row */
.dolgunet-related-swiper-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.dolgunet-related-prev,
.dolgunet-related-next{
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #dde5f0;
  background: #fff;
  color: var(--article-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, border-color .2s;
  margin: 0;
  flex-shrink: 0;
}
.dolgunet-related-prev:hover,
.dolgunet-related-next:hover{
  border-color: var(--article-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.dolgunet-related-prev.swiper-button-disabled,
.dolgunet-related-next.swiper-button-disabled{
  opacity: .35;
  cursor: default;
}
.dolgunet-related-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.dolgunet-related-pagination .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #c8d4e0;
  opacity: 1;
  transition: width .2s, background .2s;
}
.dolgunet-related-pagination .swiper-pagination-bullet-active{
  width: 24px;
  background: var(--article-primary);
}

.dolgunet-article-related__card{
  background: var(--article-card);
  border: 1px solid var(--article-border-soft);
  border-radius: var(--article-radius);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.dolgunet-article-related__card:hover{
  border-color: hsl(var(--border));
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}
.dolgunet-article-related__card-link{
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.dolgunet-article-related__card-media{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
}
.dolgunet-article-related__card-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dolgunet-article-related__card:hover .dolgunet-article-related__card-img{
  transform: scale(1.04);
}
.dolgunet-article-related__card-fallback{
  color: hsl(var(--muted-foreground) / .55);
}
.dolgunet-article-related__card-body{
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.dolgunet-article-related__card-cat{
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--article-primary);
}
.dolgunet-article-related__card-title{
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--article-secondary);
  line-height: 1.3;
  text-wrap: balance;
}
.dolgunet-article-related__card-excerpt{
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--article-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dolgunet-article-related__card-meta{
  margin-top: auto;
  padding-top: .35rem;
  font-size: .75rem;
  color: var(--article-muted);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* ========== Mobile fixed CTA ========== */
.dolgunet-article-mobile-cta{
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
  transform: translateY(120%);
  transition: transform .25s ease;
  pointer-events: none;
}
.dolgunet-article-mobile-cta.is-visible{
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1023px){
  .dolgunet-article-mobile-cta{ display: block; }
}
@media (prefers-reduced-motion: reduce){
  .dolgunet-article-mobile-cta{ transition: none; }
}

.dolgunet-article-mobile-cta__btn{
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .8rem 1rem;
  background: var(--article-secondary);
  color: hsl(var(--secondary-foreground));
  border: none;
  border-radius: 999px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 32px -8px hsl(225 84% 25% / .35);
  transition: filter .15s ease;
}
.dolgunet-article-mobile-cta__btn:hover{ filter: brightness(1.06); }
.dolgunet-article-mobile-cta__btn:focus-visible{
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}
.dolgunet-article-mobile-cta__icon{
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: hsl(var(--primary) / .25);
  color: hsl(var(--primary-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
}
.dolgunet-article-mobile-cta__text{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.dolgunet-article-mobile-cta__title{
  font-size: .875rem;
  font-weight: 700;
}
.dolgunet-article-mobile-cta__sub{
  font-size: .75rem;
  opacity: .75;
  font-weight: 500;
}
.dolgunet-article-mobile-cta__arrow{ flex-shrink: 0; opacity: .75; }

/* ========== Focus states (accessibility) ========== */
.dolgunet-article a:focus-visible,
.dolgunet-article button:focus-visible{
  outline: 2px solid var(--article-primary);
  outline-offset: 2px;
  border-radius: .375rem;
}

/* ========== Print ========== */
@media print{
  .dolgunet-article-progress,
  .dolgunet-article__sidebar,
  .dolgunet-article-mobile-cta,
  .dolgunet-article-cta,
  .dolgunet-article-related{ display: none !important; }
  .dolgunet-article__layout{
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.dolgunet-post-nav{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:2.5rem;}
.dolgunet-post-nav__item{display:flex;flex-direction:column;gap:.35rem;padding:1.25rem 0;text-decoration:none;color:inherit;transition:opacity .15s;}
.dolgunet-post-nav__item:hover{opacity:.75;}
.dolgunet-post-nav__next{text-align:right;align-items:flex-end;border-left:1px solid var(--article-border-soft);padding-left:1.5rem;}
.dolgunet-post-nav__next:first-child{grid-column:2;}
.dolgunet-post-nav__prev{text-align:left;align-items:flex-start;padding-right:1.5rem;}
.dolgunet-post-nav__label{display:inline-flex;align-items:center;gap:.4rem;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--article-primary);}
.dolgunet-post-nav__title{font-size:12px;font-weight:600;color:var(--article-secondary);line-height:1.35;}
