:root {
  --vx-blog-width: 920px;
  --vx-blog-wide: 920px;
  --vx-blog-full: 1180px;

  --vx-prose: rgba(255, 255, 255, .84);
  --vx-prose-strong: rgba(255, 255, 255, .96);
  --vx-prose-muted: rgba(255, 255, 255, .52);
  --vx-prose-link: #60a5fa;
  --vx-prose-link-hover: #93bbfd;

  --vx-code-bg: rgba(255, 255, 255, .04);
  --vx-code-border: rgba(255, 255, 255, .08);
  --vx-code-text: rgba(255, 255, 255, .88);

  --vx-syntax-keyword: #c084fc;
  --vx-syntax-string: #34d399;
  --vx-syntax-comment: rgba(255, 255, 255, .32);
  --vx-syntax-function: #60a5fa;
  --vx-syntax-number: #fbbf24;
  --vx-syntax-operator: rgba(255, 255, 255, .55);
  --vx-syntax-class: #f472b6;
  --vx-syntax-tag: #fb923c;

  --vx-blog-glow-1: rgba(59, 130, 246, .06);
  --vx-blog-glow-2: rgba(139, 92, 246, .04);
}

.vx-blog-layout {
  min-height: 100vh;
  /* background: var(--vx-bg); */
  color: var(--vx-text);
}

.vx-blog-container {
  max-width: var(--vx-blog-full);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.vx-blog-prose {
  max-width: var(--vx-blog-width);
  margin: 0 auto;
}

.vx-blog-wide {
  max-width: var(--vx-blog-wide);
  margin: 0 auto;
}

.vx-blog-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}

.vx-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% -10%, var(--vx-blog-glow-1), transparent 65%),
    radial-gradient(600px 400px at 80% 20%, var(--vx-blog-glow-2), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.vx-blog-hero > * {
  position: relative;
  z-index: 1;
}

.vx-blog-hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.vx-blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--vx-border) 60%, rgba(59, 130, 246, .25) 40%);
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
}

.vx-blog-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-accent);
  box-shadow: 0 0 8px var(--vx-accent);
}

.vx-blog-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.vx-blog-subtitle {
  font-size: 1.1rem;
  color: var(--vx-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.vx-blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--vx-muted);
  font-size: .85rem;
  font-weight: 600;
}

.vx-blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.vx-blog-meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.vx-blog-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .12);
  object-fit: cover;
}

.vx-blog-article {
  padding: 2rem 0 5rem;
}

.vx-blog-article p {
  color: var(--vx-prose);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.vx-blog-article strong,
.vx-blog-article b {
  color: var(--vx-prose-strong);
  font-weight: 700;
}

.vx-blog-article em {
  font-style: italic;
  color: rgba(255, 255, 255, .9);
}

.vx-blog-article a {
  color: var(--vx-prose-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(96, 165, 250, .35);
  font-weight: 500;
  transition: color .15s ease, text-decoration-color .15s ease;
}

.vx-blog-article a:hover {
  color: var(--vx-prose-link-hover);
  text-decoration-color: rgba(96, 165, 250, .65);
}

.vx-blog-article h2 {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 2rem 0 1rem;
  line-height: 1.25;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vx-border);
}

.vx-blog-article h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.vx-blog-article h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .95);
  margin: 2.25rem 0 .75rem;
  line-height: 1.3;
}

.vx-blog-article h4 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, .90);
  margin: 1.75rem 0 .65rem;
}

.vx-blog-article code:not(pre code) {
  background: var(--vx-code-bg);
  border: 1px solid var(--vx-code-border);
  border-radius: 7px;
  padding: .14rem .42rem;
  font-size: .88em;
  color: var(--vx-code-text);
  font-family: 'Geist Mono', 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
  font-weight: 500;
  white-space: nowrap;
}

.vx-blog-article pre {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012));
  border: 1px solid var(--vx-code-border);
  border-radius: var(--vx-radius-lg);
  padding: 0;
  margin: 1.75rem 0 2rem;
  overflow: hidden;
  font-size: .875rem;
}

.vx-blog-article pre::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(59, 130, 246, .40),
    rgba(139, 92, 246, .25),
    transparent);
  opacity: .6;
  pointer-events: none;
}

.vx-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--vx-code-border);
  background: rgba(255, 255, 255, .015);
}

.vx-code-filename {
  font-family: 'Geist Mono', 'SF Mono', monospace;
  font-size: .78rem;
  font-weight: 700;
  color: var(--vx-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.vx-code-filename .lang-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.vx-code-filename .lang-dot.js    { background: #fbbf24; }
.vx-code-filename .lang-dot.ts    { background: #3b82f6; }
.vx-code-filename .lang-dot.tsx   { background: #60a5fa; }
.vx-code-filename .lang-dot.css   { background: #c084fc; }
.vx-code-filename .lang-dot.html  { background: #fb923c; }
.vx-code-filename .lang-dot.py    { background: #34d399; }
.vx-code-filename .lang-dot.rs    { background: #f472b6; }
.vx-code-filename .lang-dot.go    { background: #22d3ee; }
.vx-code-filename .lang-dot.sh    { background: rgba(255,255,255,.5); }

.vx-code-copy {
  padding: .3rem .55rem;
  border-radius: 8px;
  border: 1px solid var(--vx-border);
  background: rgba(255, 255, 255, .03);
  color: var(--vx-muted);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}

.vx-code-copy:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--vx-border-2);
  color: #fff;
}

.vx-blog-article pre code {
  display: block;
  padding: 1rem 1.25rem;
  font-family: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: .85rem;
  line-height: 1.7;
  color: var(--vx-code-text);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vx-blog-article pre code::-webkit-scrollbar {
  height: 6px;
}

.vx-blog-article pre code::-webkit-scrollbar-track {
  background: transparent;
}

.vx-blog-article pre code::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.vx-code-line {
  display: inline-block;
  counter-increment: line;
}

.vx-code-line::before {
  content: counter(line);
  display: inline-block;
  width: 1em;
  margin-right: 1em;
  text-align: right;
  color: rgba(255, 255, 255, .16);
  font-size: .78rem;
  user-select: none;
}

pre code {
  counter-reset: line;
}

/* Syntax highlighting classes */
.token-keyword  { color: var(--vx-syntax-keyword); }
.token-string   { color: var(--vx-syntax-string); }
.token-comment  { color: var(--vx-syntax-comment); font-style: italic; }
.token-function { color: var(--vx-syntax-function); }
.token-number   { color: var(--vx-syntax-number); }
.token-operator { color: var(--vx-syntax-operator); }
.token-class    { color: var(--vx-syntax-class); }
.token-tag      { color: var(--vx-syntax-tag); }
.token-attr     { color: var(--vx-syntax-function); }
.token-punct    { color: rgba(255, 255, 255, .40); }
.token-type     { color: #22d3ee; }
.token-const    { color: #f472b6; }

/* Highlighted line */
.vx-code-hl {
  display: block;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
  background: rgba(59, 130, 246, .08);
  border-left: 2px solid var(--vx-accent);
}


.vx-blog-article blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--vx-radius);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .06), rgba(139, 92, 246, .04));
  border: 1px solid color-mix(in srgb, var(--vx-border) 65%, rgba(59, 130, 246, .22) 35%);
}

.vx-blog-article blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--vx-accent), var(--vx-accent-2));
}

.vx-blog-article blockquote p {
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}

.vx-blog-article blockquote p:last-child {
  margin-bottom: 0;
}

.vx-blog-article blockquote cite,
.vx-blog-article blockquote footer {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--vx-muted);
  font-weight: 600;
  font-style: normal;
}

.vx-blog-article img {
  border-radius: var(--vx-radius);
}

.vx-blog-article ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.vx-blog-article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .65rem;
  color: var(--vx-prose);
  font-size: .92rem;
  line-height: 1.65;
}

.vx-blog-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-accent);
  opacity: .55;
}

.vx-blog-article ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0 1.75rem;
  counter-reset: ol-counter;
  list-style: none;
}

.vx-blog-article ol li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .65rem;
  color: var(--vx-prose);
  font-size: 1.05rem;
  line-height: 1.65;
  counter-increment: ol-counter;
}

.vx-blog-article ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 1.75rem;
  text-align: center;
  font-weight: 800;
  font-size: .82rem;
  color: var(--vx-accent);
  opacity: .7;
}

.vx-blog-article figure {
  margin: 2.5rem 0;
}

.vx-blog-article figure img,
.vx-blog-img {
  width: 100%;
  border-radius: var(--vx-radius-lg);
  border: 1px solid var(--vx-border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .02) inset,
    0 20px 60px rgba(0, 0, 0, .35);
}

.vx-blog-article figcaption {
  text-align: center;
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--vx-prose-muted);
  font-weight: 500;
}

.vx-blog-callout {
  position: relative;
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  border-radius: var(--vx-radius);
  border: 1px solid var(--vx-border);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

.vx-blog-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.vx-blog-callout-title {
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: .45rem;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.vx-blog-callout p {
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--vx-prose);
}

.vx-blog-callout.is-info {
  border-color: color-mix(in srgb, var(--vx-border) 60%, rgba(59, 130, 246, .30) 40%);
  background: rgba(59, 130, 246, .04);
}

.vx-blog-callout.is-info::before {
  background: var(--vx-accent);
}

.vx-blog-callout.is-info .vx-blog-callout-title {
  color: #93bbfd;
}

.vx-blog-callout.is-warn {
  border-color: color-mix(in srgb, var(--vx-border) 60%, rgba(245, 158, 11, .30) 40%);
  background: rgba(245, 158, 11, .04);
}

.vx-blog-callout.is-warn::before {
  background: #f59e0b;
}

.vx-blog-callout.is-warn .vx-blog-callout-title {
  color: #fbbf24;
}

.vx-blog-callout.is-tip {
  border-color: color-mix(in srgb, var(--vx-border) 60%, rgba(34, 197, 94, .30) 40%);
  background: rgba(34, 197, 94, .04);
}

.vx-blog-callout.is-tip::before {
  background: #22c55e;
}

.vx-blog-callout.is-tip .vx-blog-callout-title {
  color: #4ade80;
}

.vx-blog-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--vx-border-2),
    transparent);
  margin: 3rem 0;
}

.vx-blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2rem;
  font-size: .92rem;
  border-radius: var(--vx-radius);
  overflow: hidden;
  border: 1px solid var(--vx-border);
}

.vx-blog-article thead {
  background: rgba(255, 255, 255, .04);
}

.vx-blog-article th {
  text-align: left;
  padding: .75rem 1rem;
  font-weight: 800;
  font-size: .82rem;
  color: var(--vx-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--vx-border);
}

.vx-blog-article td {
  padding: .75rem 1rem;
  color: var(--vx-prose);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.vx-blog-article tbody tr:last-child td {
  border-bottom: none;
}

.vx-blog-article tbody tr:hover {
  background: rgba(255, 255, 255, .015);
}

.vx-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
  background: var(--vx-bg-2);
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .25s ease;
}

.vx-blog-card:hover {
  border-color: var(--vx-border-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
  color: inherit;
}

.vx-blog-card-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--vx-border);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(139, 92, 246, .06));
  position: relative;
}

.vx-blog-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .3;
}

.vx-blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.vx-blog-card:hover .vx-blog-card-cover img {
  transform: scale(1.03);
}

.vx-blog-card-body {
  padding: 1.25rem;
}

.vx-blog-card-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.vx-blog-tag {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  color: var(--vx-muted);
  transition: all .15s ease;
}

.vx-blog-tag:hover {
  border-color: rgba(59, 130, 246, .30);
  color: rgba(255, 255, 255, .85);
  background: rgba(59, 130, 246, .08);
}

.vx-blog-tag.is-featured {
  border-color: rgba(59, 130, 246, .30);
  background: rgba(59, 130, 246, .10);
  color: rgba(191, 219, 254, .95);
}

.vx-blog-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .95);
  line-height: 1.3;
  margin-bottom: .5rem;
}

.vx-blog-card-excerpt {
  font-size: .88rem;
  color: var(--vx-muted);
  line-height: 1.55;
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vx-blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--vx-muted);
  font-weight: 600;
}

.vx-blog-toc {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: .5rem;
}

.vx-blog-toc::-webkit-scrollbar {
  width: 3px;
}

.vx-blog-toc::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.vx-blog-toc-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vx-muted);
  margin-bottom: .85rem;
}

.vx-blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--vx-border);
}

.vx-blog-toc-item {
  margin: 0;
}

.vx-blog-toc-link {
  display: block;
  padding: .35rem 0 .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vx-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all .15s ease;
  line-height: 1.4;
}

.vx-blog-toc-link:hover {
  color: rgba(255, 255, 255, .85);
  border-left-color: rgba(255, 255, 255, .20);
}

.vx-blog-toc-link.is-active {
  color: #fff;
  border-left-color: var(--vx-accent);
}

.vx-blog-toc-link.depth-3 {
  padding-left: 2rem;
  font-size: .78rem;
}

.vx-blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
  background: rgba(255, 255, 255, .02);
  margin: 3rem 0;
  transition: border-color .15s ease;
}

.vx-blog-author:hover {
  border-color: var(--vx-border-2);
}

.vx-blog-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
  object-fit: cover;
}

.vx-blog-author-name {
  font-weight: 800;
  font-size: .95rem;
  color: rgba(255, 255, 255, .95);
  letter-spacing: -.01em;
}

.vx-blog-author-bio {
  font-size: .82rem;
  color: var(--vx-muted);
  line-height: 1.5;
  margin-top: .15rem;
}

.vx-blog-share {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--vx-border);
  border-bottom: 1px solid var(--vx-border);
  margin: 2rem 0;
}

.vx-blog-share-label {
  font-size: .78rem;
  font-weight: 800;
  color: var(--vx-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: .5rem;
}

.vx-blog-share-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--vx-border);
  background: rgba(255, 255, 255, .02);
  color: var(--vx-muted);
  transition: all .15s ease;
  cursor: pointer;
  font-size: .85rem;
}

.vx-blog-share-btn:hover {
  border-color: var(--vx-border-2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.vx-blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9999;
  background: transparent;
}

.vx-blog-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--vx-accent), var(--vx-accent-2));
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(59, 130, 246, .3);
}


.vx-blog-footer {
  border-top: 1px solid var(--vx-border);
  padding: 3rem 0;
  margin-top: 2rem;
  color: var(--vx-muted);
}

.vx-blog-footer-inner {
  max-width: var(--vx-blog-full);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.vx-blog-footer-brand {
  font-weight: 900;
  font-size: 1rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: -.02em;
}

.vx-blog-footer-links {
  display: flex;
  gap: 1.25rem;
}

.vx-blog-footer-links a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--vx-muted);
  text-decoration: none;
  transition: color .15s ease;
}

.vx-blog-footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .vx-blog-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .vx-blog-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .vx-blog-article h2 {
    font-size: 1.35rem;
  }

  .vx-blog-article h3 {
    font-size: 1.1rem;
  }

  .vx-blog-article pre code {
    font-size: .8rem;
    padding: .85rem 1rem;
  }
}

@keyframes vx-blog-fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vx-blog-animate {
  animation: vx-blog-fadeUp .5s ease forwards;
}

.vx-blog-animate-delay-1 { animation-delay: .1s; opacity: 0; }
.vx-blog-animate-delay-2 { animation-delay: .2s; opacity: 0; }
.vx-blog-animate-delay-3 { animation-delay: .3s; opacity: 0; }
.vx-blog-animate-delay-4 { animation-delay: .4s; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .vx-blog-animate,
  .vx-blog-animate-delay-1,
  .vx-blog-animate-delay-2,
  .vx-blog-animate-delay-3,
  .vx-blog-animate-delay-4 {
    animation: none;
    opacity: 1;
  }

  .vx-blog-progress-bar {
    transition: none;
  }
}
