.elementor-16302 .elementor-element.elementor-element-d446c89{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-16302:not(.elementor-motion-effects-element-type-background), body.elementor-page-16302 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}:root{--page-title-display:none;}@media(max-width:767px){.elementor-16302 .elementor-element.elementor-element-d446c89{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(min-width:768px){.elementor-16302 .elementor-element.elementor-element-d446c89{--content-width:1400px;}}/* Start custom CSS for shortcode, class: .elementor-element-ab003ce *//* TT Blog Article (Elementor) — optimized, scoped */
.tt-blog-article{
  /* theme tokens (берём из Elementor globals, с фолбэками) */
  --tt-accent: var(--e-global-color-accent, #FFD56A);
  --tt-text: var(--e-global-color-text, #0F172A);
  --tt-font: var(--e-global-typography-text-font-family, inherit);
  --tt-font-h: var(--e-global-typography-primary-font-family, inherit);

  --tt-radius: 18px;
  --tt-radius-sm: 12px;

  --tt-border: rgba(148,163,184,.28);
  --tt-border-strong: rgba(148,163,184,.42);

  --tt-card: rgba(15,23,42,.04);
  --tt-card-2: rgba(15,23,42,.06);

  --tt-shadow: 0 10px 30px rgba(0,0,0,.10);
  --tt-shadow-soft: 0 8px 20px rgba(0,0,0,.08);

  color: var(--tt-text);
  font-family: var(--tt-font);
  line-height: 1.65;

  max-width: 1100px;
  margin-inline: auto;
}

/* если сайт в темной палитре — значения аккуратнее под тёмный фон */
@media (prefers-color-scheme: dark){
  .tt-blog-article{
    --tt-border: rgba(255,255,255,.14);
    --tt-border-strong: rgba(255,255,255,.22);
    --tt-card: rgba(255,255,255,.06);
    --tt-card-2: rgba(255,255,255,.08);
    --tt-shadow: 0 14px 40px rgba(0,0,0,.45);
    --tt-shadow-soft: 0 10px 24px rgba(0,0,0,.35);
    color: rgba(255,255,255,.92);
  }
}

/* base */
.tt-blog-article :where(*, *::before, *::after){ box-sizing: border-box; }
.tt-blog-article :where(img){ max-width: 100%; height: auto; display: block; }

/* ускоряет длинные статьи (особенно мобилка) */
.tt-blog-article :where(.tt-toc, .tt-content){
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* links */
.tt-blog-article :where(a){
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
@media (prefers-color-scheme: dark){
  .tt-blog-article :where(a){ border-bottom-color: rgba(255,255,255,.18); }
}
.tt-blog-article :where(a:hover){
  color: var(--tt-accent);
  border-bottom-color: var(--tt-accent);
}
.tt-blog-article :where(a:focus-visible){
  outline: 2px solid var(--tt-accent);
  outline-offset: 3px;
  border-bottom-color: transparent;
}

/* layout blocks */
.tt-breadcrumbs{
  display:flex; flex-wrap:wrap; gap:8px; align-items:center;
  padding: 10px 0 8px;
  font-size: 13px;
  opacity: .9;
}
.tt-sep{ opacity:.55; }
.tt-current{ opacity:.75; }

.tt-hero{ padding-top: 10px; }
.tt-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .8;
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.tt-dot{ opacity:.5; }

.tt-h1{
  font-family: var(--tt-font-h);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
}
.tt-lead{
  margin: 0 0 16px;
  font-size: clamp(16px, 1.35vw, 18px);
  opacity: .92;
}

.tt-cover{
  margin-top: 16px;
  border-radius: var(--tt-radius);
  overflow: hidden;
  border: 1px solid var(--tt-border);
  box-shadow: var(--tt-shadow-soft);
}

/* card-style container helper */
.tt-blog-article :where(.tt-toc, .tt-note, .tt-links, .tt-cta, .tt-faq__item){
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  background: var(--tt-card);
}
.tt-blog-article :where(.tt-toc, .tt-note, .tt-links, .tt-faq__item){
  box-shadow: var(--tt-shadow-soft);
}

/* buttons */
.tt-cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.tt-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--tt-border);
  background: transparent;
  color: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, filter .18s ease;
}
.tt-btn:hover{ transform: translateY(-1px); border-color: var(--tt-border-strong); box-shadow: var(--tt-shadow-soft); }
.tt-btn:active{ transform: translateY(0); box-shadow: none; }

.tt-btn--primary{
  background: var(--tt-accent);
  border-color: var(--tt-accent);
  color: #0B0E13;
}
.tt-btn--primary:hover{ filter: brightness(1.03); }
.tt-btn--ghost:hover{ border-color: var(--tt-accent); color: var(--tt-accent); }

/* TOC */
.tt-toc{ margin-top:18px; padding: 16px 16px 12px; }
.tt-toc__title{
  margin: 0 0 10px;
  font: 800 14px/1.2 var(--tt-font-h);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.tt-toc__list{
  margin:0;
  padding-left: 18px;
  display:grid;
  gap:6px;
}
.tt-toc__list a{ border-bottom:0; opacity:.92; }
.tt-toc__list a:hover{ color: var(--tt-accent); }

/* article body */
.tt-content{ margin-top:18px; padding-bottom: 24px; }
.tt-content :where(p){ margin: 0 0 12px; }
.tt-content :where(ul,ol){ margin: 0 0 14px; padding-left: 18px; }
.tt-content :where(li){ margin: 6px 0; }
.tt-content :where(strong){ font-weight: 800; }
.tt-content :where(em){ opacity: .9; }

.tt-content h2{
  font-family: var(--tt-font-h);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 26px 0 12px;
  font-size: clamp(20px, 2vw, 28px);
  position: relative;
  padding-left: 14px;
}
.tt-content h2::before{
  content:"";
  position:absolute; left:0; top:.25em;
  width:4px; height:1.05em;
  border-radius:99px;
  background: var(--tt-accent);
}
.tt-content h3{
  font-family: var(--tt-font-h);
  font-weight: 800;
  line-height: 1.25;
  margin: 18px 0 10px;
  font-size: clamp(16px, 1.5vw, 20px);
}

/* note */
.tt-note{
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--tt-card-2), var(--tt-card));
}
.tt-note p:last-child{ margin-bottom:0; }

/* checklist */
.tt-checklist{
  list-style:none;
  padding-left:0 !important;
  margin: 0 0 16px;
  display:grid;
  gap:10px;
}
.tt-checklist li{
  position:relative;
  padding: 12px 12px 12px 44px;
  border-radius: var(--tt-radius-sm);
  border: 1px solid var(--tt-border);
  background: var(--tt-card);
}
.tt-checklist li::before{
  content:"✓";
  position:absolute; left:14px; top:10px;
  width:22px; height:22px;
  display:grid; place-items:center;
  border-radius:999px;
  background: var(--tt-accent);
  color:#0B0E13;
  font-weight:900;
  font-size:13px;
}

/* CTA внутри статьи */
.tt-cta{
  margin: 18px 0;
  padding: 18px 18px 16px;
  box-shadow: var(--tt-shadow);
}
@media (prefers-color-scheme: dark){
  .tt-cta{
    background: radial-gradient(1200px 260px at 15% 0%, rgba(255,213,106,.16), rgba(255,213,106,0) 60%), var(--tt-card);
  }
}
.tt-cta__title{
  margin: 0 0 8px;
  font-family: var(--tt-font-h);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(18px, 1.8vw, 22px);
}
.tt-cta__text{ margin: 0 0 12px; opacity: .92; }
.tt-cta__actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 8px; }

.tt-contacts-mini{
  margin-top:10px;
  font-size:13px;
  opacity:.9;
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.tt-contacts-mini .tt-link{ border-bottom:0; }

/* links box */
.tt-links{ margin-top:14px; padding: 14px 16px; }
.tt-links ul{ margin: 8px 0 0; }
.tt-links a{ border-bottom:0; }

/* FAQ */
.tt-faq{ margin-top:12px; display:grid; gap:10px; }
.tt-faq__item{ overflow:hidden; }
.tt-faq__item > summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  font-family: var(--tt-font-h);
  font-weight: 850;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.tt-faq__item > summary::-webkit-details-marker{ display:none; }
.tt-faq__item > summary::after{
  content:"＋";
  font-weight:900;
  color: var(--tt-accent);
  font-size:18px;
  line-height:1;
}
.tt-faq__item[open] > summary::after{ content:"—"; }
.tt-faq__item > p{ margin:0; padding: 0 16px 14px; opacity:.92; }

/* footer */
.tt-article-footer{
  border-top: 1px solid var(--tt-border);
  margin-top:18px;
  padding-top:14px;
  opacity:.8;
  font-size:13px;
}

/* responsive */
@media (max-width: 767px){
  .tt-toc{ padding: 14px 14px 10px; }
  .tt-btn{ width:100%; }
  .tt-cta__actions .tt-btn{ width:100%; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .tt-blog-article :where(a, .tt-btn){ transition: none !important; }
  .tt-btn:hover{ transform: none; }
}/* End custom CSS */