.vmb-blog [hidden],
.vmb-article [hidden],
.article-float[hidden] {
  display: none !important;
}

.vmb-blog {
  overflow-x: clip;
  background: var(--vm-white);
  color: var(--vm-ink);
}

.vmb-blog-hero {
  padding-block: 72px 56px;
  background: var(--vm-ice);
  color: var(--vm-ink);
}

.vmb-blog-hero__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
}

.vmb-blog-hero__copy {
  max-width: 52rem;
  min-width: 0;
}

.vmb-blog-hero__copy .c-kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.vmb-blog-hero__copy h1 {
  max-width: 18ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-2xl);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.vmb-blog-hero__copy p {
  max-width: 46rem;
  margin: 20px 0 0;
  color: var(--vm-muted);
  font-size: var(--vm-text-md);
  line-height: 1.7;
}

.vmb-blog-count {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-acid);
  color: var(--vm-ink);
  font-size: var(--vm-text-sm);
  font-weight: 700;
}

#blg-article-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--vm-ink);
  color: var(--vm-white);
  font-family: var(--vm-mono);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.vmb-blog-feed {
  background: var(--vm-white);
  color: var(--vm-ink);
}

.vmb-blog-panel {
  min-width: 0;
}

.vmb-blog-panel--series {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--vm-line);
}

.vmb-blog-panel__head {
  max-width: 48rem;
  margin-bottom: 32px;
}

.vmb-blog-panel__head .c-kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.vmb-blog-panel__head h2 {
  margin: 0;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-2xl);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.vmb-blog-panel__head p {
  margin: 12px 0 0;
  color: var(--vm-muted);
  font-size: var(--vm-text-md);
  line-height: 1.65;
}

.blg-magazine {
  display: block;
  min-width: 0;
  margin-bottom: 24px;
}

.blog-grid,
.blg-grid {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.blg-grid--rest,
.blg-grid--openclaw-rest {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  align-items: stretch;
}

.blog-card,
.blg-featured {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-white);
  color: var(--vm-ink);
  box-shadow: var(--vm-shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blg-magazine > .blg-featured {
  grid-column: 1 / -1;
  flex-direction: column;
  width: 100%;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--vm-shadow);
}

.blog-card:focus-visible {
  outline: 3px solid var(--vm-lime);
  outline-offset: 4px;
}

.blg-featured__media {
  position: relative;
  width: 100%;
  height: clamp(14rem, 25vw, 20rem);
  min-width: 0;
  overflow: hidden;
  background: var(--vm-ink-2);
  color: var(--vm-white);
}

.blg-featured__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog-card:hover .blg-featured__img,
.blog-card:focus-visible .blg-featured__img {
  transform: scale(1.025);
}

.blg-featured__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--vm-ink) 92%, transparent),
    color-mix(in srgb, var(--vm-ink) 8%, transparent) 68%
  );
  pointer-events: none;
}

.blg-featured__overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 32px;
  color: #fff;
}

.blg-featured__pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--vm-acid);
  color: var(--vm-ink);
  font-size: var(--vm-text-xs);
  font-weight: 800;
  line-height: 1.2;
}

.blg-featured__hl {
  max-width: 28ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-2xl);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.blg-featured__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 28px 32px 30px;
  background: var(--vm-white);
  color: var(--vm-ink);
}

.blg-featured__excerpt {
  max-width: 70ch;
  margin: 0;
  color: var(--vm-muted);
  font-size: var(--vm-text-md);
  line-height: 1.7;
}

.blg-featured__meta {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--vm-line);
}

.blg-featured__hint {
  color: var(--vm-muted);
  font-family: var(--vm-mono);
  font-size: var(--vm-text-xs);
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.blg-featured.blg-compact {
  flex-direction: row;
  height: 100%;
  border-radius: var(--vm-radius-md);
  background: var(--vm-ice);
  color: var(--vm-ink);
  box-shadow: none;
}

.blg-featured.blg-compact .blg-featured__media {
  flex: 0 0 13rem;
  width: 13rem;
  height: auto;
  min-height: 15rem;
}

.blg-featured.blg-compact .blg-featured__shade {
  background: color-mix(in srgb, var(--vm-ink) 18%, transparent);
}

.blg-featured.blg-compact .blg-featured__overlay {
  display: none;
}

.blg-featured.blg-compact .blg-featured__body {
  min-height: 15rem;
  padding: 24px;
  background: var(--vm-ice);
  color: var(--vm-ink);
}

.blg-featured.blg-compact .blg-featured__pill {
  margin-bottom: 12px;
  background: var(--vm-acid);
  color: var(--vm-ink);
}

.blg-featured.blg-compact .blg-featured__hl {
  display: -webkit-box;
  max-width: none;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--vm-ink);
  font-size: var(--vm-text-xl);
  line-height: 1.3;
  letter-spacing: -0.015em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blg-featured.blg-compact .blg-featured__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vm-muted);
  font-size: var(--vm-text-sm);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blg-featured.blg-compact .blg-featured__meta {
  margin-top: auto;
  padding-top: 16px;
}

.vmb-blog-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-ice);
  color: var(--vm-ink);
}

.vmb-blog-empty__copy {
  min-width: 0;
}

.vmb-blog-empty__copy .c-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.vmb-blog-empty__copy h3 {
  max-width: 22ch;
  margin: 0;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-xl);
  line-height: 1.3;
}

.vmb-blog-empty__copy p {
  max-width: 38rem;
  margin: 12px 0 0;
  color: var(--vm-muted);
  line-height: 1.7;
}

.vmb-blog-empty__links {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.vmb-blog-empty__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border-radius: var(--vm-radius-md);
  background: var(--vm-white);
  color: var(--vm-ink);
  text-decoration: none;
  transition: transform 180ms ease;
}

.vmb-blog-empty__link:hover,
.vmb-blog-empty__link:focus-visible {
  transform: translateX(4px);
}

.vmb-blog-empty__link:focus-visible {
  outline: 3px solid var(--vm-lime);
  outline-offset: 3px;
}

.vmb-blog-empty__link span {
  color: var(--vm-lime-paper);
  font-size: var(--vm-text-xs);
  font-weight: 800;
}

.vmb-blog-empty__link strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-md);
  line-height: 1.45;
}

.vmb-blog-empty__link svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 1.25rem;
  height: 1.25rem;
}

.vmb-blog-closing {
  padding-top: 0;
  padding-bottom: 32px;
  color: var(--vm-ink);
}

.vmb-blog-closing .c-close-band {
  padding: 32px;
}

.vmb-blog-closing .c-kicker {
  margin-bottom: 16px;
}

.vmb-blog-closing__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: min(100%, 18rem);
}

.vmb-blog-closing__actions .c-btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}

.vmb-article {
  overflow-x: clip;
  padding-block: 64px 80px;
  background: var(--vm-white);
  color: var(--vm-ink);
}

.vmb-article-column {
  width: min(100%, 56rem);
  margin-inline: auto;
  padding-inline: 24px;
}

.vmb-article-breadcrumb {
  min-width: 0;
  margin-bottom: var(--vm-space-3);
}

.vmb-article-breadcrumb ol {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vmb-article-breadcrumb li {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--vm-muted);
  font-size: var(--vm-text-sm);
}

.vmb-article-breadcrumb li + li::before {
  content: "›";
  flex: 0 0 auto;
  margin-inline: 10px;
  color: var(--vm-muted);
}

.vmb-article-breadcrumb a {
  color: var(--vm-lime-paper);
  text-decoration: none;
}

.vmb-article-breadcrumb [aria-current="page"] {
  display: block;
  max-width: 38ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vmb-article-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.vmb-article-header .c-kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.vmb-article-header h1 {
  max-width: 24ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--vm-heading);
  font-size: var(--vm-text-2xl);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.vmb-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.blog-article-date,
.blog-article-lead {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 2rem;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--vm-ice);
  color: var(--vm-ink);
  font-size: var(--vm-text-sm);
  line-height: 1.35;
}

.blog-article-date {
  font-family: var(--vm-mono);
  font-variant-numeric: tabular-nums;
}

.blog-article-readtime {
  margin-inline-start: 4px;
}

.article-hero {
  width: 100%;
  margin: 28px auto 0;
}

.article-hero img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--vm-radius-lg);
  box-shadow: var(--vm-shadow-soft);
}

.blog-article-body {
  margin-top: 32px;
  color: var(--vm-ink);
  font-size: 17px;
  line-height: 1.72;
}

.blog-article-body > :first-child {
  margin-top: 0;
}

.blog-article-body h2,
.blog-article-body h3 {
  overflow-wrap: anywhere;
  font-family: var(--vm-heading);
  color: var(--vm-ink);
  letter-spacing: -0.015em;
}

.blog-article-body h2 {
  margin: 44px 0 16px;
  font-size: var(--vm-text-xl);
  line-height: 1.3;
}

.blog-article-body h3 {
  margin: 28px 0 12px;
  font-size: var(--vm-text-lg);
  line-height: 1.4;
}

.blog-article-body h2[id],
.blog-article-body h3[id] {
  scroll-margin-top: 100px;
}

.blog-article-body p {
  margin: 0 0 20px;
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 24px;
  padding-inline-start: 1.5rem;
}

.blog-article-body li {
  margin-block: 7px;
}

.blog-article-body li::marker {
  color: var(--vm-lime-paper);
  font-family: var(--vm-mono);
  font-weight: 700;
}

.blog-article-body a:not(.c-btn) {
  color: var(--vm-lime-paper);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-article-body a:not(.c-btn):hover,
.blog-article-body a:not(.c-btn):focus-visible {
  color: var(--vm-ink);
}

.blog-article-body a:not(.c-btn):focus-visible {
  outline: 2px solid var(--vm-lime);
  outline-offset: 3px;
}

.blog-article-body strong {
  color: var(--vm-ink);
}

.blog-article-body mark {
  padding-inline: 0.15em;
  background: linear-gradient(
    transparent 38%,
    color-mix(in srgb, var(--vm-acid) 62%, transparent) 38%
  );
  color: var(--vm-ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.blog-article-body del {
  color: var(--vm-muted);
}

.blog-article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-inline-start: 4px solid var(--vm-lime);
  border-radius: 0 var(--vm-radius-sm) var(--vm-radius-sm) 0;
  background: var(--vm-ice);
  color: var(--vm-ink);
}

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

.blog-article-body pre {
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  padding: 20px;
  border-radius: var(--vm-radius-md);
  background: var(--vm-ink);
  color: var(--vm-white);
  font-family: var(--vm-mono);
  font-size: 15px;
  line-height: 1.65;
}

.blog-article-body code {
  font-family: var(--vm-mono);
  overflow-wrap: anywhere;
}

.blog-article-body :not(pre) > code {
  padding: 0.18em 0.4em;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-ice);
  color: var(--vm-ink);
  font-size: 0.92em;
}

.blog-article-body dl {
  margin: 24px 0;
}

.blog-article-body dt {
  margin-top: 16px;
  color: var(--vm-ink);
  font-family: var(--vm-heading);
  font-weight: 800;
}

.blog-article-body dd {
  margin: 8px 0 0;
  padding-inline-start: 16px;
  border-inline-start: 2px solid var(--vm-line);
  color: var(--vm-muted);
}

.blog-article-body .table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
}

.blog-article-body table {
  display: table;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  color: var(--vm-ink);
  font-size: var(--vm-text-sm);
  font-variant-numeric: tabular-nums;
}

.blog-article-body .table-scroll table {
  display: table;
  margin: 0;
  overflow: visible;
}

.blog-article-body th,
.blog-article-body td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--vm-line);
  background: var(--vm-white);
  color: var(--vm-ink);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.blog-article-body th {
  background: var(--vm-ice);
  font-family: var(--vm-heading);
  font-weight: 800;
}

.blog-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: var(--vm-radius-md);
  box-shadow: var(--vm-shadow-soft);
}

.blog-article-body figure {
  margin: 24px 0;
}

.blog-article-body figcaption {
  margin-top: 10px;
  color: var(--vm-muted);
  font-size: var(--vm-text-sm);
  line-height: 1.5;
  text-align: center;
}

.article-toc {
  margin: 0 0 28px;
  padding: 24px;
  border-inline-start: 4px solid var(--vm-lime);
  border-radius: 0 var(--vm-radius-md) var(--vm-radius-md) 0;
  background: var(--vm-ice);
  color: var(--vm-ink);
}

.article-toc__title {
  margin: 0 0 12px !important;
  color: var(--vm-ink);
  font-family: var(--vm-heading);
  font-size: var(--vm-text-lg);
  font-weight: 800;
}

.article-toc__list {
  margin: 0 !important;
  padding-inline-start: 1.4rem !important;
}

.article-toc__sublist {
  margin: 8px 0 0 !important;
  padding-inline-start: 1.25rem !important;
}

.article-toc a:not(.c-btn) {
  color: var(--vm-ink);
  font-weight: 650;
  text-decoration: none;
}

.article-toc a:not(.c-btn):hover,
.article-toc a:not(.c-btn):focus-visible {
  color: var(--vm-lime-paper);
}

.article-faq__item {
  margin: 24px 0;
  border-top: 1px solid var(--vm-line);
  border-bottom: 1px solid var(--vm-line);
  background: var(--vm-white);
  color: var(--vm-ink);
}

.article-faq__q {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 0;
  color: var(--vm-ink);
  font-family: var(--vm-heading);
  font-weight: 800;
  cursor: pointer;
}

.article-faq__q:focus-visible {
  outline: 2px solid var(--vm-lime);
  outline-offset: 3px;
}

.article-faq__a {
  padding: 16px 16px 2px;
  border-top: 1px solid var(--vm-line);
  background: var(--vm-white);
  color: var(--vm-ink);
}

.article-faq__a p:last-child {
  margin-bottom: 14px;
}

.article-further-reading {
  margin: 28px 0;
  padding: 24px;
  border-radius: var(--vm-radius-md);
  background: var(--vm-ice);
  color: var(--vm-ink);
}

.article-further-reading h3 {
  margin: 0 0 16px;
}

.article-further-reading ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-further-reading li {
  margin: 0;
}

.blog-article-body .article-cta-link {
  position: relative;
  display: block;
  padding: 16px 44px 16px 18px;
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius-sm);
  background: var(--vm-white);
  color: var(--vm-ink);
  font-family: var(--vm-heading);
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-article-body .article-cta-link::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "→";
  color: var(--vm-lime-paper);
  transform: translateY(-50%);
}

.blog-article-body .article-cta-link:hover,
.blog-article-body .article-cta-link:focus-visible {
  border-color: var(--vm-control-line);
  color: var(--vm-ink);
  transform: translateX(4px);
}

.article-mac-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 32px 0 0;
  padding: 32px;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-ink);
  color: var(--vm-white);
}

.article-mac-promo__copy {
  min-width: 0;
}

.article-mac-promo .c-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.article-mac-promo h2 {
  margin: 0;
  color: var(--vm-white);
  font-size: var(--vm-text-xl);
}

.article-mac-promo p {
  max-width: 48rem;
  margin: 12px 0 0;
  color: var(--vm-ice);
}

.article-mac-promo .c-btn {
  min-width: 12rem;
  white-space: normal;
  text-align: center;
}

.article-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(18rem, calc(100vw - 48px));
  overflow: hidden;
  padding: 18px;
  border-top: 5px solid var(--vm-acid);
  border-radius: var(--vm-radius-md);
  background: var(--vm-ink);
  color: var(--vm-white);
  box-shadow: var(--vm-shadow);
}

.article-float__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.article-float__title {
  overflow-wrap: anywhere;
  color: var(--vm-white);
  font-family: var(--vm-heading);
  font-size: var(--vm-text-md);
  line-height: 1.45;
}

.article-float__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  border: 1px solid var(--vm-line-dark);
  border-radius: 999px;
  background: var(--vm-ink-2);
  color: var(--vm-white);
  cursor: pointer;
}

.article-float__close:hover,
.article-float__close:focus-visible {
  border-color: var(--vm-acid);
}

.article-float__close:focus-visible {
  outline: 2px solid var(--vm-acid);
  outline-offset: 2px;
}

.article-float__close svg {
  width: 0.9rem;
  height: 0.9rem;
}

.article-float__action {
  width: 100%;
  margin-top: 16px;
  white-space: normal;
  text-align: center;
}

@media (max-width: 900px) {
  .article-float {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .vmb-blog-hero {
    padding-block: 56px 40px;
  }

  .vmb-blog-hero__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .vmb-blog-hero__copy h1 {
    max-width: none;
  }

  .vmb-blog-panel--series {
    margin-top: 48px;
    padding-top: 48px;
  }

  .blg-featured__media {
    height: clamp(14rem, 62vw, 20rem);
  }

  .blg-featured__overlay,
  .blg-featured__body {
    padding: 24px;
  }

  .blg-featured__hl {
    font-size: var(--vm-text-xl);
  }

  .blg-featured.blg-compact {
    flex-direction: column;
  }

  .blg-featured.blg-compact .blg-featured__media {
    flex: none;
    width: 100%;
    height: 12rem;
    min-height: 0;
  }

  .blg-featured.blg-compact .blg-featured__body {
    min-height: 0;
  }

  .vmb-blog-empty {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
  }

  .vmb-blog-closing .c-close-band {
    padding: 24px;
  }

  .vmb-blog-closing__actions {
    width: 100%;
    min-width: 0;
  }

  .vmb-article {
    padding-block: 48px 64px;
  }

  .vmb-article-column {
    padding-inline: 20px;
  }

  .vmb-article-breadcrumb {
    margin-bottom: 32px;
  }

  .article-mac-promo {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
  }

  .article-mac-promo .c-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .vmb-blog-hero {
    padding-block: 48px 32px;
  }

  .vmb-blog-hero__copy h1,
  .vmb-article-header h1 {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .blg-featured__overlay,
  .blg-featured__body,
  .blg-featured.blg-compact .blg-featured__body {
    padding: 20px;
  }

  .blg-featured__media {
    height: 14rem;
  }

  .vmb-blog-empty {
    padding: 20px;
  }

  .vmb-blog-empty__link {
    padding: 16px;
  }

  .vmb-article-column {
    padding-inline: 16px;
  }

  .vmb-article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-toc,
  .article-further-reading,
  .article-mac-promo {
    padding: 20px;
  }

  .blog-article-body blockquote {
    padding: 18px;
  }

  .blog-article-body th,
  .blog-article-body td {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blg-featured__img,
  .vmb-blog-empty__link,
  .article-cta-link {
    transition: none;
  }
}
