body {
  overflow-x: hidden;
}
.blog-hub-hero {
  padding: 78px 0 34px;
  background:
    linear-gradient(180deg, rgba(185,255,95,0.065), rgba(5,7,4,0) 76%),
    radial-gradient(circle at 82% 18%, rgba(185,255,95,0.13), transparent 28%);
}
.blog-hub-intro {
  max-width: 920px;
  min-width: 0;
}
.blog-hub-intro h1 {
  margin-top: 20px;
  max-width: 940px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
}
.blog-hub-intro h1 span {
  display: block;
}
.blog-hub-intro .lead span {
  display: block;
}
.blog-hub-intro .lead {
  max-width: 720px;
}
.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.blog-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(185,255,95,.18);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  text-decoration: none;
  font-weight: 780;
}
.blog-tabs a:first-child,
.blog-tabs a:hover {
  color: #071004;
  border-color: var(--accent);
  background: var(--accent);
}
.blog-section {
  padding: 54px 0;
}
.section-head.compact {
  margin-bottom: 20px;
}
.section-head.compact h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.blog-grid-popular {
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
}
.blog-card {
  position: relative;
  min-width: 0;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(185,255,95,.17);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.024)),
    #071004;
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.blog-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,95,.65), transparent);
  opacity: .28;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185,255,95,.42);
  background:
    linear-gradient(180deg, rgba(185,255,95,.075), rgba(255,255,255,.03)),
    #071004;
}
.blog-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.blog-card-meta,
.blog-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.blog-card-meta span:first-child {
  color: var(--accent);
  font-weight: 840;
}
.blog-card h3 {
  margin-top: 18px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: normal;
}
.blog-card p {
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: break-word;
}
.blog-card-bottom {
  margin-top: auto;
  padding-top: 20px;
}
.blog-card-bottom strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}
.blog-card-featured {
  min-height: 330px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(185,255,95,.16), transparent 30%),
    linear-gradient(150deg, rgba(185,255,95,.12), rgba(255,255,255,.03)),
    #071004;
}
.blog-card-featured h3 {
  margin-top: 24px;
  font-size: clamp(28px, 2.4vw, 34px);
}
.blog-card-featured p {
  font-size: 18px;
}
.blog-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-category-section {
  padding-top: 44px;
}
.article-header {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at 76% 0%, rgba(185,255,95,.13), transparent 30%),
    linear-gradient(180deg, rgba(185,255,95,.06), rgba(5,7,4,0));
}
.article-header-inner {
  max-width: 840px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.article-header h1 {
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .98;
}
.article-header .lead {
  max-width: 760px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 760px);
  gap: 52px;
  align-items: start;
}
.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}
.tldr,
.article-toc,
.article-callout,
.article-cta {
  border: 1px solid rgba(185,255,95,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.tldr {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(185,255,95,.085), rgba(255,255,255,.025)),
    #071004;
}
.tldr h2,
.article-toc h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.tldr ul {
  margin: 0;
  padding-left: 20px;
}
.tldr li {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.55;
}
.article-toc {
  padding: 18px;
}
.article-toc h2 {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(185,255,95,.09);
  color: var(--muted);
  text-decoration: none;
  line-height: 1.35;
}
.article-toc a:hover {
  color: var(--accent);
}
.article-body {
  max-width: 760px;
}
.article-section,
.article-faq {
  padding: 28px 0;
  border-bottom: 1px solid rgba(185,255,95,.13);
}
.article-body h2 {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
}
.article-body h3 {
  margin-top: 26px;
}
.article-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
  overflow-wrap: anywhere;
}
.article-callout {
  margin: 24px 0 4px;
  padding: 20px;
  background: rgba(185,255,95,.07);
}
.article-callout strong {
  color: var(--accent);
}
.article-callout p {
  margin: 8px 0 0;
}
.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 26px !important;
  background:
    radial-gradient(circle at 88% 20%, rgba(185,255,95,.12), transparent 28%),
    rgba(185,255,95,.055);
}
.article-cta h2 {
  margin-top: 6px;
  font-size: clamp(24px, 2.6vw, 34px);
}
.article-cta p {
  margin-bottom: 0;
}
.article-cta-compact {
  margin: 26px 0 0;
}
.related-section {
  padding-top: 30px;
}
.blog-grid-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .blog-grid,
  .blog-grid-popular,
  .blog-grid-compact,
  .blog-grid-related,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .blog-card-featured {
    min-height: 360px;
  }
  .article-sidebar {
    position: static;
    order: -1;
  }
  .article-cta {
    grid-template-columns: 1fr;
  }
  .article-cta .btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
  .blog-hub-hero {
    padding-top: 46px;
  }
  .blog-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: -12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .blog-tabs a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 13px;
  }
  .blog-hub-intro h1 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }
  .blog-hub-intro h1,
  .blog-hub-intro .lead,
  .section-head.compact h2,
  .blog-card h3,
  .blog-card p,
  .blog-card-bottom,
  .article-header h1,
  .article-header .lead,
  .tldr li,
  .article-toc a,
  .article-body h2,
  .article-body p,
  .article-callout p {
    max-width: min(320px, calc(100vw - 64px));
  }
  .section-head.compact h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .blog-section {
    padding: 42px 0;
  }
  .blog-card,
  .blog-card-featured {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: auto;
    padding: 20px;
    border-radius: 14px;
  }
  .blog-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .article-header {
    padding-top: 48px;
  }
  .article-header h1 {
    font-size: clamp(32px, 9vw, 42px);
    overflow-wrap: anywhere;
  }
  .article-header .lead,
  .tldr li,
  .article-toc a,
  .article-body h2,
  .article-body p,
  .article-callout p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .article-body h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .article-body p {
    font-size: 17px;
  }
  .tldr,
  .article-toc,
  .article-callout,
  .article-cta {
    border-radius: 14px;
  }
}
