:root {
  --bg: #1D222A;
  --bg2: #242931;
  --white: #fff;
  --g: #7D848F;
  --t: #383D47;
  --hs-purple:#6f5ae7;
  --hs-pill-bg:#eef2ff;
  --hs-pill-text:#6f5ae7;
  --hs-footer-grad-1:#2f3e70;
  --hs-footer-grad-2:#394a85;
  --hs-ease: cubic-bezier(.2,.8,.2,1);
  --hs-dur: 260ms;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--t);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--acc);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.button_variant_solid { background: var(--acc); color: #fff; }
.button_variant_outline { background: var(--bg); color: var(--acc); border-color: #363B44; }

.main { flex: 1 0 auto; }

.hs-header-wrap{ width:100%; flex:0 0 auto; }
.hs-header{ background:#fff; position:sticky; top:0; z-index:100; }

.hs-header__container{
  max-width:1280px;
  margin:0 auto;
  padding:18px 22px;
  display:grid;
  grid-template-columns:auto auto 1fr auto;
  align-items:center;
  column-gap:22px;
}

.hs-brand{
  display:flex;
  align-items:center;
  gap:18px;
  white-space:nowrap;
  min-width:0;
}

.hs-logo{ display:inline-flex; align-items:center; text-decoration:none; }
.hs-logo svg{ display:block; height:auto; }

.hs-logo__desktop{ display:inline-flex; align-items:center; }
.hs-logo__mobile{ display:none; align-items:center; }

.hs-brand__btn{ padding:11px 22px; }

.hs-burger{
  color:#1D222A;
  display:none;
  width:44px;height:44px;
  border:0;background:transparent;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}

.hs-burger:focus-visible{
  outline: 2px solid rgba(115,90,231,.25);
  outline-offset: 2px;
}

.hs-burger__line{
  display:block;
  width:26px;
  height:3px;
  background:#1D222A;
  border-radius:999px;
  transform-origin:center;
  transition:
    transform var(--hs-dur) var(--hs-ease),
    opacity 180ms var(--hs-ease);
}

body.hs-menu-open .hs-burger__line:nth-child(1){ transform: translateY(9px) rotate(45deg); }
body.hs-menu-open .hs-burger__line:nth-child(2){ opacity:0; }
body.hs-menu-open .hs-burger__line:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

.hs-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:28px;
  width:100%;
  max-width:none;
  margin:0;
  min-width:0;
}

.hs-nav__link{
  color:#070707;
  text-decoration:none;
  font-weight:400;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
}
.hs-nav__link:hover{ color:#5239BF; }

.hs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  border-radius:999px;
  font-size:14px;
  line-height:1;
  padding:11px 18px;
  border:1px solid transparent;
  white-space:nowrap;
}

.hs-btn--primary{
  background:var(--hs-purple);
  color:#fff;
  box-shadow:0 6px 18px rgba(111,90,231,.22);
}
.hs-btn--primary:hover{ background:#5f4ee0; }

.hs-btn--ghost{
  background:var(--hs-pill-bg);
  color:var(--hs-pill-text);
}
.hs-btn--ghost:hover{ background:#e6ebff; }

.hs-actions{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}

.hs-lang-wrap{ position:relative; }

.hs-lang{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:none;
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  color:#111827;
  font-weight:400;
  font-size:14px;
}
.hs-lang:hover{ background:#f5f7ff; }

.hs-lang__flag{
  width:18px;
  height:18px;
  display:block;
}
.hs-lang__name{ opacity:.95; }

.hs-caret{
  width:16px;
  height:16px;
  opacity:.9;
  display:inline-block;

  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.3818 6H4.61641C4.06787 6 3.79359 6.60713 4.18215 6.96304L7.14201 9.67419C7.61627 10.1086 8.38767 10.1086 8.86193 9.67419L11.8218 6.96304C12.2046 6.60713 11.9304 6 11.3818 6Z' fill='%23070707'/%3E%3C/svg%3E");

  transform: rotate(0deg);
  transform-origin:50% 50%;
  transition:transform 180ms ease;
}

.hs-lang-wrap.is-open .hs-caret{
  transform: rotate(180deg);
}

.hs-lang__dropdown{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  width:220px;
  list-style:none;
  margin:0;
  padding:8px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  display:none;
  z-index:9999;
}

.hs-lang-wrap.is-open .hs-lang__dropdown{ display:block; }

.hs-lang__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  color:#111;
}
.hs-lang__item:hover{ background:#F1F3FF; }
.hs-lang__item.is-current{ background:#E8ECFF; }

.hs-mob{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  pointer-events:none;
}

.hs-mob__overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.30);
  opacity:0;
  transition: opacity var(--hs-dur) var(--hs-ease);
}

.hs-mob__panel{
  position:absolute;
  top:0; left:0;
  height:100vh;
  width:min(360px, 86vw);
  background:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,.20);
  border-radius:0 20px 20px 0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transform: translate3d(-102%, 0, 0);
  transition: transform var(--hs-dur) var(--hs-ease);
  will-change: transform;
}

.hs-mob__nav{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 0;
}

.hs-mob__btn{
  width:88%;
  padding:16px;
  margin-bottom: 12px;
}

.hs-mob__link{
  padding:16px;
  color:#111827;
  text-decoration:none;
  font-weight:400;
  font-size:16px;
}
.hs-mob__link:hover{ color:#5239BF; }

body.hs-menu-open{ overflow:hidden; }

body.hs-menu-open .hs-mob{
  display:block;
  pointer-events:auto;
}
body.hs-menu-open .hs-mob__overlay{ opacity:1; }
body.hs-menu-open .hs-mob__panel{ transform: translate3d(0,0,0); }

@media (max-width:1250px){
  .hs-header__container{
    padding:14px 14px;
    grid-template-columns:auto 1fr auto;
  }

  .hs-burger{ display:inline-flex; }
  .hs-nav{ display:none; }

  .hs-brand{ justify-self:center; gap:0; }
  .hs-brand__btn{ display:none; }

  .hs-logo__desktop{ display:none; }
  .hs-logo__mobile{ display:inline-flex; }

  .hs-actions .hs-lang-wrap{ display:none; }
}

.hs-mob__langbar{
  padding: 16px;
  border-top: 1px solid #E7E7E7;
  background:#fff;
}

.hs-mob__langselect{
  width: 45%;
  display:flex;
  align-items:center;
  gap:12px;

  padding: .5rem .75rem;
  border-radius: .5rem;
  border:none;
  background:#EEF2FF;

  color:#111827;
  font-weight:400;
  font-size:16px;
  line-height:1;

  cursor:pointer;
}

.hs-mob__langselect .hs-lang__flag{
  width:22px;
  height:22px;
  flex:0 0 auto;
  display:block;
}

.hs-mob__langname{ display:inline-block; }

.hs-mob__langcaret{
  margin-left:auto;
  width:16px;
  height:16px;
  opacity:.9;

  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.3818 6H4.61641C4.06787 6 3.79359 6.60713 4.18215 6.96304L7.14201 9.67419C7.61627 10.1086 8.38767 10.1086 8.86193 9.67419L11.8218 6.96304C12.2046 6.60713 11.9304 6 11.3818 6Z' fill='%23111827'/%3E%3C/svg%3E");

  transform:rotate(0deg);
  transform-origin:50% 50%;
  transition: transform 180ms ease;
}

.hs-mob__langbar.is-open .hs-mob__langcaret{
  transform: rotate(180deg);
}

.hs-mob__langlist{
  display:none;
  width:45%;
  margin-top: 10px;
  border-radius:.5rem; 
  background:#fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  overflow:hidden;
}

.hs-mob__langbar.is-open .hs-mob__langlist{
  display:block;
}

.hs-mob__langitem{
  display:flex;
  align-items:center;
  gap:12px;
  padding: .5rem .75rem;
  color:#111827;
  text-decoration:none;
  font-weight:400;
  font-size:16px;
  line-height:1;
  background:#fff;
}

.hs-mob__langitem .hs-lang__flag{
  width:22px;
  height:22px;
  flex:0 0 auto;
  display:block;
}

.hs-mob__langitem:hover{
  background:#F5F7FF;
}

.hs-mob__langitem.is-current{
  background:#E8ECFF;
}

.hs-mob__langitem:visited{
  color:#111827;
}

.hs-footer{
  background: transparent;
  color:#fff;
  padding:0;
  flex:0 0 auto;
  margin-top:auto;
}

.hs-footer__panel{
  background:radial-gradient(120% 120% at 50% 0%,
    var(--hs-footer-grad-2) 0%,
    var(--hs-footer-grad-1) 55%,
    #2b3765 100%);
  padding: 68px 0 46px;
  overflow: hidden;
}

.hs-footer__container{
  max-width:1280px;
  margin:0 auto;
  padding:0 22px;
}

.hs-footer__top{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:flex-start;
  gap:40px 48px;
}

.hs-footer__aside{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  align-self:flex-start;
  gap:16px;
  min-width:0;
}

.footer__socials{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:flex-start;
  gap:20px;
  margin:0;
  padding:0;
  list-style:none;
}

.footer__socials-item{
  margin:0;
  padding:0;
  list-style:none;
  flex:0 0 auto;
}

.footer__socials-item a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:33px;
  height:33px;
  padding:0;
  margin:0;
  border-radius:0;
  background:transparent;
  overflow:hidden;
  flex-shrink:0;
  line-height:0;
}

.footer__socials-item a:hover{
  opacity:0.85;
}

.footer__socials-item img{
  display:block;
  width:33px;
  height:33px;
  max-width:33px;
  max-height:33px;
  object-fit:contain;
  object-position:center;
}

.footer__socials-item:nth-child(3) a{
  overflow:visible;
}

.footer__socials-item:nth-child(3) img{
  transform:scale(1.22);
  transform-origin:center center;
}

.footer__apk{
  margin:0;
  padding:0;
  list-style:none;
}

.footer__apk a{
  display:inline-flex;
  line-height:0;
}

.footer__apk img{
  display:block;
  width:100px;
  height:30px;
  max-width:100%;
  object-fit:contain;
}

.hs-footer__logo{
  display:inline-flex;
  align-items:flex-start;
  align-self:flex-start;
  line-height:0;
}
.hs-footer__logo svg{ display:block; height:auto; max-width:217px; }

.hs-footer__nav{
  align-self:flex-start;
  justify-self:center;
  width:100%;
  min-width:0;
  max-width:100%;
  font-size:16px;
  line-height:1.25;
}

.hs-footer__nav-inner{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:30px;
  width:min(640px, 100%);
  max-width:640px;
  margin:0 auto;
  box-sizing:border-box;
}


.hs-footer__nav-row{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:flex-start;
  justify-content:space-between;
  width:100%;
  box-sizing:border-box;
  column-gap:8px;
}

.hs-footer a{
  color:#fff;
  text-decoration:none;
  font-weight:400;
  white-space:nowrap;
}
.hs-footer a:hover{ color:#909AC3; }

.hs-footer__nav-row > a{
  flex:0 1 auto;
  min-width:0;
  margin:0;
  padding:0 2px;
  box-sizing:border-box;
  text-align:center;
  white-space:normal;
  line-height:1.3;
}

.hs-footer__docs{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:36px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.10);
  color:#D8E1FF;
  font-size:12px;
}
.hs-footer__docs a{
  font-weight:500;
  color:#D8E1FF;
}
.hs-footer__docs a:hover{ color:#D8E1FF; }

@media (max-width: 1100px){
  .hs-footer__nav-row{
    column-gap:6px;
  }
}

/* H1 в разметке для SEO, не показываем (перебивает любые стили .blog-archive-h1) */
.blog-archive-h1.blog-archive-h1--visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0, 0, 0, 0) !important;
  clip-path:inset(50%) !important;
  white-space:nowrap !important;
  border:0 !important;
  font-size:0 !important;
  line-height:0 !important;
  font-weight:400 !important;
  color:transparent !important;
}

@media (max-width:900px){
  .hs-footer__panel{ padding:36px 0 22px; }

  .hs-footer__top{
    grid-template-columns:1fr;
    gap:26px;
  }

  .hs-footer__logo{ justify-content:center; }

  .hs-footer__nav{
    justify-self:center;
    width:100%;
  }

  .hs-footer__nav-inner{
    align-items:stretch;
    max-width:100%;
    width:100%;
  }

  .hs-footer__nav-row--5,
  .hs-footer__nav-row--4{
    flex-wrap:wrap;
    justify-content:center;
    row-gap:10px;
    column-gap:12px;
  }

  .hs-footer__nav-row > a{
    flex:1 1 calc(50% - 10px);
    max-width:calc(50% - 6px);
    min-width:min(100%, 140px);
  }

  .hs-footer__aside{
    align-items:center;
  }

  .footer__socials{
    justify-content:center;
  }

  .hs-footer__docs{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px 18px;
    justify-items:start;
  }
}

.blog-wrapper {
  --bg: #fff;
  --ink: #1D222A;
  --muted: #525760;
  --muted-2: #80858E;
  --line: #E7E7E7;
  --brand: #5239BF;
  --badge: #242931;
  --badge-border: #363B44;
  --card: #242931;

  max-width: 1128px;
  margin: 0 auto;
  padding: 24px 0 128px 0;
  background: var(--bg);
  color: var(--ink);
}

.blog__head {
  display: grid;
  grid-template-columns: 1fr 299px;
  align-items: center;
  gap: 63px;
  margin-top: 8px;
}

.blog__head > div {
  position: relative;
}

.blog__crumbs {
  font-size: 14px;
  font-weight: 500;
  color: #383D47;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 25px;
}

.blog__search {
  padding: 4px 0;
  border-bottom: 1px solid #CDCDCD;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog__search input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  color: #80858E;
  font-size: 14px;
  line-height: 16px;
  padding: 0 0 2px 0;
  outline: none;
}

.blog__divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6B7280;
}
.breadcrumbs a {
  color: #1D222A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: #000; }
.breadcrumbs span { color: #6B7280; }
.breadcrumbs .separator { margin: 0 4px; color: #9CA3AF; }

.blog__body {
  display: grid;
  grid-template-columns: 766px 299px;
  gap: 63px;
}

.blog__grid {
  display: grid;
  grid-template-columns: 375px 375px;
  gap: 32px 24px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card__thumb {
  position: relative;
  border-radius: 15.2px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.post-card__img {
  display: block;
  aspect-ratio: 375/239;
  background-size: cover;
}

.post-card__badge {
  position: absolute;
  left: 27px;
  top: 28px;
  background: var(--badge);
  border: 1px solid var(--badge-border);
  color: #fff;
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 600;
}

.post-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #1D222A;
  margin: 0;
}
.post-card__title a {
  color: #1D222A;
  text-decoration: none;
}

.post-card__excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #525760;
}

.post-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
}

.blog-wrapper .post-card__category { display: none !important; }

.sidebar-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #000;
  padding-top: 24px;
}

.recent-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #242931;
  margin-bottom: 16px;
}
.recent-card__bg {
  display: block;
  aspect-ratio: 299/191;
  background-size: cover;
}
.recent-card__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 44px);
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.single-hero {
  position: relative;
  border-radius: 15.2px;
  overflow: hidden;
  background: #242931;
  margin-bottom: 16px;
}
.single-hero__bg {
  display: block;
  aspect-ratio: 765/239;
  background-size: cover;
  background-position: center;
}
.single-hero__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 626px;
  max-width: calc(100% - 44px);
  text-align: center;
  color: #fff;
  font-size: 22.34px;
  line-height: 26.81px;
  font-weight: 600;
  margin: 0;
}

.post-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.post-content {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.post-content a{color:#735AE7;}
.post-tags {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.post-tag {
  font-size: 12px;
  color: #383D47;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.blog__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 38px;
}

.pp-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #80858E;
}
.pp-select .select {
  width: 72px;
  height: 32px;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  padding: 8px 12px;
  background: #FAFAFA;
  color: #383D47;
}

.pagination {
  display: flex;
  gap: 16px;
  align-items: center;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #F1F1F1;
  color: #CDCDCD;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.page-numbers { display: flex; gap: 2px; }
.page-number {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #525760;
  font-size: 12px;
  font-weight: 600;
}
.page-number.is-active {
  background: #735AE7;
  color: #FFFFFF;
}
.page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background: #FAFBFF;
  color: #735AE7;
  font-size: 14px;
  font-weight: 600;
}

.blog-wrapper .blog__filters {
  display: flex;
  align-items: center;
  gap: 24px;
}
.blog-wrapper .filter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-wrapper .filter-label {
  color: #383D47;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.blog-wrapper .filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  color: #383D47;
  font-size: 14px;
  line-height: 16px;
  padding-right: 18px;
  cursor: pointer;
}
.blog-wrapper .filter-chevron {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}
.blog-wrapper .filter-chevron:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 5px;
  border-bottom: 1.6px solid #383D47;
  border-right: 1.6px solid #383D47;
  transform: rotate(45deg);
}

.blog-wrapper .cat-filter { position: relative; display: inline-block; }
.blog-wrapper .cat-filter__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 26px 24px 0;
  color: #383D47;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.blog-wrapper .cat-filter__chev {
  position: absolute;
  right: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.blog-wrapper .cat-filter[data-open="1"] .cat-filter__chev { transform: rotate(180deg); }
.blog-wrapper .cat-filter__menu {
  position: absolute;
  left: 0;
  top: 28px;
  min-width: 220px;
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: 8px;
  display: none;
  z-index: 50;
}
.blog-wrapper .cat-filter[data-open="1"] .cat-filter__menu { display: block; }
.blog-wrapper .cat-filter__item {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #1D222A;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.blog-wrapper .cat-filter__item:hover { background: none; }
.blog-wrapper .cat-filter__item.is-active {
  background: #EEF2FF;
  color: #070707;
}

.blog-wrapper .blog__body--full { grid-template-columns: 1fr; }
.blog-wrapper article.post,
.blog-wrapper .post-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.blog-wrapper .post-card__overlay-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  max-width: calc(100% - 54px);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 22.34px;
  line-height: 26.81px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

@media (max-width: 1200px) {
  .blog-wrapper { padding: 16px; }
  .blog__head { grid-template-columns: 1fr; }
  .blog__body { grid-template-columns: 1fr; gap: 24px; }
  .blog__grid { grid-template-columns: 1fr; justify-content: center; }
  .post-card__img { aspect-ratio: 375/239; }
}

@media (max-width: 900px) {
  .footer__inner { justify-content: center; }
  .footer__menu { order: 3; width: 100%; margin-top: 4px; }
}

@media (max-width: 720px) {
  .footer__menu { gap: 12px; }
  .support__text { display: none; }
  .support { order: 2; }
}

.main.hs-404{
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F8FF;
  padding: 56px 16px 80px;
}

.hs-404__wrap{ width: 100%; }

.hs-404__container{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hs-404__hero{
  position: relative;
  display: inline-block;
  overflow: visible;
}

.hs-404__hero svg{
  position: relative;
  z-index: 2;
  display: block;
  width: min(475px, 86vw);
  height: auto;
}

.hs-404__title{
  margin: 28px 0 10px;
  font-size: 28px;
  font-weight: 700;
  color: #121826;
}

.hs-404__text{
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.55;
  color: #5A6171;
}

.hs-404__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  background: #6B5BFF;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(107, 91, 255, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.hs-404__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(107, 91, 255, 0.28);
}

.hs-404__btn:active{
  transform: translateY(0);
  opacity: 0.95;
}

.hs-404__help{
  margin: 44px auto 0;
  width: 100%;
  max-width: 920px;
}

.hs-404__help-inner{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 42px 48px;
  text-align: left;
  color: #fff;
  background: linear-gradient(90deg, #4C39DE 0%, #5B45EE 55%, #4B36D7 100%);
  box-shadow: 0 20px 50px rgba(44, 31, 125, 0.18);
}

.hs-404__help-inner::after{
  content: "";
  position: absolute;
  right: -170px;
  top: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,0.10) 0 22%,
      rgba(255,255,255,0.07) 22% 38%,
      rgba(255,255,255,0.05) 38% 54%,
      rgba(255,255,255,0.035) 54% 70%,
      rgba(255,255,255,0.02) 70% 100%);
  opacity: 0.9;
}

.hs-404__help-title{
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
}

.hs-404__help-mail{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hs-404__help-mail:hover{ opacity: 0.92; }

.hs-404__help-copy{
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.hs-404__help-copy svg{
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 640px){
  .main.hs-404{ padding: 40px 14px 60px; }

  .hs-404__help-inner{
    padding: 28px 22px;
    border-radius: 18px;
  }

  .hs-404__help-inner::after{
    right: -220px;
    top: -140px;
    width: 520px;
    height: 520px;
  }

  .hs-404__title{ font-size: 24px; }
  .hs-404__help-title{ font-size: 20px; }
}