:root {
  --blog-max: 720px;
}

.blog-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.6rem 0;
  background: linear-gradient(110deg, rgba(9, 14, 30, 0.94), rgba(8, 12, 26, 0.86) 48%, rgba(24, 10, 34, 0.78));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3), 0 0 16px rgba(38, 247, 255, 0.2);
}

.blog-header-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-header-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-back-link {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.4rem 0;
  letter-spacing: 0.05em;
}

.blog-back-link:hover {
  color: var(--cyan);
}

.blog-article-wrap {
  width: min(var(--blog-max), 100% - 2rem);
  margin: 2rem auto 4rem;
}

.breadcrumb {
  margin-bottom: 1.8rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.4rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.blog-article-body {
  background: linear-gradient(180deg, rgba(13, 19, 38, 0.84), rgba(7, 10, 21, 0.95));
  border: 1px solid var(--line-strong);
  border-radius: 1.2rem;
  box-shadow: inset 0 0 30px rgba(38, 247, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.3);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-article-header {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(38, 247, 255, 0.26);
}

.blog-meta {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-article-header h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.2;
  color: #edf2ff;
}

.blog-lead {
  margin: 0;
  color: #d6e5ff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.5;
}

.blog-article-body > p {
  margin: 0 0 1.1rem;
  color: #e2ecff;
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1rem;
}

.blog-article-body > p:last-child {
  margin-bottom: 0;
}

.blog-cta-panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(38, 247, 255, 0.6);
  background: linear-gradient(135deg, rgba(8, 17, 34, 0.9), rgba(14, 10, 30, 0.85));
  box-shadow: inset 0 0 40px rgba(38, 247, 255, 0.12), 0 12px 30px rgba(0, 0, 0, 0.36), 0 0 20px rgba(38, 247, 255, 0.16);
  padding: 1.5rem;
  text-align: center;
}

.blog-cta-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-cta-price {
  margin: 0.3rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-cta-sub {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.blog-cta-btn {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
}

.blog-footer {
  border-top: 1px solid rgba(38, 247, 255, 0.34);
  background: #03050a;
  padding: 1.5rem 0 2rem;
}

.blog-footer-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.blog-footer-inner p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.blog-footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-footer-inner a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
}

.blog-footer-inner a:hover {
  color: var(--cyan);
  border-color: rgba(38, 247, 255, 0.72);
  box-shadow: 0 0 14px rgba(38, 247, 255, 0.22);
}

@media (min-width: 640px) {
  .blog-article-body {
    padding: 2.5rem;
  }

  .blog-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
