@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body:not(.bl-landing-active) .wp-site-blocks > header,
body:not(.bl-landing-active) .wp-site-blocks > .wp-block-template-part.header,
body:not(.bl-landing-active) .wp-site-blocks > footer.wp-block-template-part,
body:not(.bl-landing-active) .wp-site-blocks > .wp-block-template-part:last-child {
  display: none !important;
}

body:not(.bl-landing-active) .wp-block-query .no-results,
body:not(.bl-landing-active) .wp-block-query-no-results,
body:not(.bl-landing-active) main p:first-of-type:last-of-type {
  display: none !important;
}

body:not(.bl-landing-active) {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #0F172A;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:not(.bl-landing-active) .wp-site-blocks {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noltis-blog-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.4);
}
.noltis-blog-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.noltis-blog-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  text-decoration: none;
}
.noltis-blog-logo:hover { color: #0F172A; }
.noltis-blog-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.noltis-blog-nav a {
  color: #64748B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.noltis-blog-nav a:hover { color: #0F172A; }
.noltis-blog-nav .btn-blog {
  padding: 10px 20px;
  background: #0F172A;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
}
.noltis-blog-nav .btn-blog:hover {
  background: #2563EB;
  color: #fff;
  transform: translateY(-1px);
}

.noltis-blog-hero {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 24px;
  text-align: center;
}
.noltis-blog-hero h1 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin: 0 0 12px;
}
.noltis-blog-hero p {
  font-size: 18px;
  color: #64748B;
  margin: 0 0 32px;
}

.noltis-blog-search {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.noltis-blog-search input[type="search"] {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  font-size: 15px;
  font-family: "Inter", -apple-system, sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.noltis-blog-search input[type="search"]:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: #fff;
}
.noltis-blog-search input[type="search"]::placeholder { color: #94A3B8; }
.noltis-blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94A3B8;
  pointer-events: none;
}

/* ===============================
   BLOG LISTING — card grid
   =============================== */
.noltis-blog-cards {
  max-width: 1200px;
  margin: 32px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.noltis-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 8px 32px rgba(15,23,42,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.noltis-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(15,23,42,0.12);
  color: inherit;
}
.noltis-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.noltis-blog-card-body {
  padding: 24px;
}
.noltis-blog-card-date {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 8px;
}
.noltis-blog-card h3 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.noltis-blog-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide WP default main content on blog listing when we inject cards */
body.blog:not(.bl-landing-active) main,
body.home:not(.bl-landing-active) main {
  display: none !important;
}

/* ===============================
   SINGLE ARTICLE — Roistat/Andata style
   =============================== */
body.single-post:not(.bl-landing-active) main {
  max-width: 860px;
  margin: 0 auto 60px;
  padding: 0 24px;
  flex: 1;
}
body.single-post:not(.bl-landing-active) main > * {
  max-width: 100% !important;
}

/* Hide blog hero on single post */
body.single-post .noltis-blog-hero { display: none; }

/* Article header */
.noltis-article-header {
  text-align: center;
  margin: 48px auto 40px;
  max-width: 860px;
  padding: 0 24px;
}
.noltis-article-header .article-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.noltis-article-header h1 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  line-height: 1.2;
  margin: 0 0 16px;
}
.noltis-article-meta {
  font-size: 14px;
  color: #94A3B8;
}
.noltis-article-cover {
  max-width: 960px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.noltis-article-cover img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Article typography */
body.single-post:not(.bl-landing-active) main h1 {
  display: none;
}
body.single-post:not(.bl-landing-active) main h2 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 48px 0 16px;
  padding-top: 16px;
  line-height: 1.3;
}
body.single-post:not(.bl-landing-active) main h3 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 36px 0 12px;
  line-height: 1.35;
}
body.single-post:not(.bl-landing-active) main p {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 20px;
}
body.single-post:not(.bl-landing-active) main ul,
body.single-post:not(.bl-landing-active) main ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
body.single-post:not(.bl-landing-active) main li {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 8px;
}
body.single-post:not(.bl-landing-active) main strong {
  color: #0F172A;
  font-weight: 700;
}
body.single-post:not(.bl-landing-active) main a {
  color: #2563EB;
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
body.single-post:not(.bl-landing-active) main a:hover {
  text-decoration-color: #2563EB;
}
body.single-post:not(.bl-landing-active) main figure {
  margin: 32px 0;
}
body.single-post:not(.bl-landing-active) main figure img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Hide WP comments */
body.single-post:not(.bl-landing-active) .comments-area,
body.single-post:not(.bl-landing-active) .wp-block-comments,
body.single-post:not(.bl-landing-active) .wp-block-post-comments-form,
body.single-post:not(.bl-landing-active) #comments,
body.single-post:not(.bl-landing-active) .comment-respond {
  display: none !important;
}

/* ===============================
   LIKES / DISLIKES
   =============================== */
.noltis-reactions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 16px 0 0;
  padding: 24px;
  border-top: 1px solid #E2E8F0;
}
.noltis-reactions-label {
  font-size: 15px;
  color: #64748B;
  font-weight: 500;
}
.noltis-reaction-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", -apple-system, sans-serif;
  color: #64748B;
  transition: all 0.2s;
}
.noltis-reaction-btn:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}
.noltis-reaction-btn.active-like {
  border-color: #2563EB;
  background: #EFF6FF;
  color: #2563EB;
}
.noltis-reaction-btn.active-dislike {
  border-color: #EF4444;
  background: #FEF2F2;
  color: #EF4444;
}
.noltis-reaction-btn .reaction-icon {
  font-size: 18px;
}
.noltis-reaction-btn .reaction-count {
  min-width: 12px;
  text-align: center;
}

/* Article CTA */
.noltis-article-cta {
  margin: 16px 0 0;
  padding: 24px;
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
  border-radius: 16px;
  text-align: center;
}
.noltis-article-cta h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
}
.noltis-article-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 20px;
}
.noltis-article-cta a {
  display: inline-block;
  padding: 12px 28px;
  background: #2563EB;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.noltis-article-cta a:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  color: #fff;
}

.noltis-blog-empty {
  text-align: center;
  padding: 60px 24px;
  max-width: 500px;
  margin: 0 auto;
}
.noltis-blog-empty-icon { font-size: 48px; margin-bottom: 20px; }
.noltis-blog-empty h3 {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}
.noltis-blog-empty p { font-size: 15px; color: #64748B; margin: 0; }

.noltis-blog-footer {
  background: #F8FAFC;
  padding: 32px 0;
  border-top: 1px solid rgba(226,232,240,0.4);
  margin-top: auto;
}
.noltis-blog-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Inter", -apple-system, sans-serif;
}
.noltis-blog-footer-inner p { font-size: 14px; color: #94A3B8; margin: 0; }
.noltis-blog-footer-inner a {
  color: #64748B;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.noltis-blog-footer-inner a:hover { color: #2563EB; }

.noltis-burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #0F172A;
  z-index: 120;
}
.noltis-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  z-index: 109;
}
body.noltis-menu-open .noltis-menu-overlay { display: block; }
body.noltis-menu-open { overflow: hidden; }

@media (max-width: 768px) {
  html, body { overflow-x: clip !important; max-width: 100vw !important; }
  .noltis-burger { display: flex; align-items: center; }
  .noltis-blog-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 24px 32px;
    box-shadow: -8px 0 32px rgba(15,23,42,0.12);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 110;
    overflow-y: auto;
  }
  .noltis-blog-nav a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid #F1F5F9;
  }
  .noltis-blog-nav .btn-blog {
    margin-top: 16px;
    text-align: center;
    padding: 14px 20px;
  }
  body.noltis-menu-open .noltis-blog-nav {
    transform: translateX(0);
  }
  .noltis-blog-hero { margin-top: 40px; }
  .noltis-blog-hero h1 { font-size: 30px; }
  .noltis-blog-cards { grid-template-columns: 1fr; padding: 0 16px; }
  .noltis-article-header h1 { font-size: 28px; }
  body.single-post:not(.bl-landing-active) main h2 { font-size: 22px; }
  body.single-post:not(.bl-landing-active) main p,
  body.single-post:not(.bl-landing-active) main li { font-size: 16px; }
  .noltis-blog-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .noltis-reactions { flex-direction: column; gap: 16px; }
}

body.single-post:not(.bl-landing-active) .wp-block-query,
body.single-post:not(.bl-landing-active) .wp-block-post-template,
body.single-post:not(.bl-landing-active) .wp-block-query-title {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .wp-block-comments,
body.single-post:not(.bl-landing-active) .wp-block-comments-query-loop,
body.single-post:not(.bl-landing-active) .comment-respond,
body.single-post:not(.bl-landing-active) .wp-block-post-comments-form,
body.single-post:not(.bl-landing-active) main ~ .wp-block-group,
body.single-post:not(.bl-landing-active) .wp-block-group:has(> .wp-block-heading.alignwide),
body.single-post:not(.bl-landing-active) .wp-block-group.alignwide:has(.wp-block-post-template),
body.single-post:not(.bl-landing-active) footer.wp-block-template-part {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .wp-block-comments-query-loop,
body.single-post:not(.bl-landing-active) .comment-respond,
body.single-post:not(.bl-landing-active) .wp-block-post-comments-form {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .wp-block-heading.alignwide.has-small-font-size {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .wp-block-post-template {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .wp-block-group.alignwide:has(.wp-block-post-template) {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .wp-site-blocks > footer {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .wp-block-post-featured-image {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .wp-block-post-terms,
body.single-post:not(.bl-landing-active) .taxonomy-category {
  display: none !important;
}
body.single-post:not(.bl-landing-active) .entry-content,
body.single-post:not(.bl-landing-active) .wp-block-post-content {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
body.single-post:not(.bl-landing-active) .entry-content > *,
body.single-post:not(.bl-landing-active) .wp-block-post-content > * {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.single-post:not(.bl-landing-active) .has-global-padding {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
body.single-post:not(.bl-landing-active) main {
  max-width: 100% !important;
  padding: 0 !important;
}
body.single-post:not(.bl-landing-active) .wp-block-post-title {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .wp-block-post-terms__prefix,
body.single-post:not(.bl-landing-active) [class*="wp-block-post-terms"] {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .wp-block-group.has-accent-4-color,
body.single-post:not(.bl-landing-active) .wp-block-group:has(> p:only-child) {
  display: none !important;
}

body.single-post:not(.bl-landing-active) .entry-content + .wp-block-group,
body.single-post:not(.bl-landing-active) .entry-content + .wp-block-group + .wp-block-group {
  display: none !important;
}

body.single-post:not(.bl-landing-active) main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.single-post:not(.bl-landing-active) .entry-content {
  padding-bottom: 0 !important;
}

body.single-post:not(.bl-landing-active) main {
  margin-top: 0 !important;
}
body.single-post:not(.bl-landing-active) .wp-site-blocks > * + main {
  margin-top: 0 !important;
}

.noltis-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.noltis-search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 100;
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
}
.noltis-search-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #0f172a;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.noltis-search-item:last-child {
  border-bottom: none;
}
.noltis-search-item:hover {
  background: #f8fafc;
}
.noltis-search-item img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.noltis-search-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.noltis-search-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.noltis-search-excerpt mark {
  background: #fef08a;
  color: #0f172a;
  padding: 0 2px;
  border-radius: 2px;
}
.noltis-search-empty {
  padding: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .noltis-blog-cards { grid-template-columns: repeat(2, 1fr); }
}

.noltis-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  margin: 0 0 36px 0;
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 999px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #4338CA;
  box-shadow: 0 1px 2px rgba(67, 56, 202, 0.04), 0 0 0 3px rgba(99, 102, 241, 0.04);
  -webkit-font-smoothing: antialiased;
}
.noltis-reading-time svg {
  width: 15px;
  height: 15px;
  color: #6366F1;
  flex-shrink: 0;
  stroke-width: 2.2;
}
.noltis-reading-time .noltis-rt-num {
  color: #312E81;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.noltis-reading-time .noltis-rt-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.45);
  display: inline-block;
  margin: 0 1px;
}
.noltis-reading-time .noltis-rt-label {
  color: #6366F1;
  font-weight: 500;
  text-transform: lowercase;
}

.noltis-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px - 97px);
  padding: 60px 24px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}
.noltis-404::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}
.noltis-404__code {
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 35%, #A78BFA 60%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 24px rgba(99,102,241,0.25));
  position: relative;
  z-index: 1;
}
.noltis-404__title {
  font-size: 34px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}
.noltis-404__text {
  font-size: 18px;
  color: #64748B;
  margin: 0 0 40px;
  max-width: 440px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.noltis-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3), 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}
.noltis-404__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.4), 0 2px 6px rgba(0,0,0,0.1);
  color: #fff;
}
.noltis-404__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
@media (max-width: 640px) {
  .noltis-404__code { font-size: 140px; }
  .noltis-404__title { font-size: 26px; }
  .noltis-404__text { font-size: 16px; }
  .noltis-404 { min-height: calc(100vh - 64px - 120px); padding: 40px 20px; }
  .noltis-404::before { width: 340px; height: 340px; }
}
