.blg-page,
.article-page {
  background: var(--vm-paper);
  color: var(--vm-ink);
}

.blg-page [hidden],
.article-page [hidden],
.blg-panel[hidden],
.blg-magazine[hidden],
.blg-empty[hidden],
.article-float[hidden] {
  display: none;
}

.blg-hero {
  padding-block: var(--vm-space-4);
  color: var(--vm-ink);
}

.blg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: var(--vm-space-6);
  align-items: end;
}

.blg-hero__copy,
.blg-hero__ledger,
.blg-panel__head > *,
.blg-empty__copy,
.c-closing-inner > * {
  min-width: 0;
}

.blg-hero__copy {
  max-width: var(--vm-width-narrow);
}

.blg-hero__copy .c-kicker {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  margin-bottom: var(--vm-space-3);
}

.blg-hero__copy h1 {
  max-width: 18ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: var(--vm-fs-6);
  line-height: 1.16;
}

.blg-hero__lead {
  max-width: 48rem;
  margin: var(--vm-space-4) 0 0;
  color: var(--vm-ink);
  font-size: var(--vm-fs-2);
  line-height: 1.7;
}

.blg-hero__ledger {
  overflow: hidden;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-ink);
  color: var(--vm-paper);
  box-shadow: var(--vm-shadow);
}

.blg-hero__ledger-head {
  display: flex;
  justify-content: space-between;
  gap: var(--vm-space-3);
  padding: var(--vm-space-3) var(--vm-space-4);
  background: var(--vm-orange);
  color: var(--vm-ink);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
}

.blg-hero__ledger dl {
  margin: 0;
  padding: var(--vm-space-2) var(--vm-space-4) var(--vm-space-4);
}

.blg-hero__ledger dl > div {
  display: grid;
  grid-template-columns: minmax(7rem, .45fr) minmax(0, 1fr);
  gap: var(--vm-space-3);
  padding: var(--vm-space-2) 0;
  border-bottom: 1px solid var(--vm-line-dark);
}

.blg-hero__ledger dl > div:last-child {
  border-bottom: 0;
}

.blg-hero__ledger dt,
.blg-hero__ledger dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.blg-hero__ledger dt {
  color: var(--vm-amber);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
}

.blg-hero__ledger dd {
  color: var(--vm-paper);
  line-height: 1.55;
}

.blg-count {
  display: inline-flex;
  align-items: center;
  gap: var(--vm-space-2);
  margin-top: var(--vm-space-5);
  color: var(--vm-ink);
  font-weight: 700;
}

.blg-count #blg-article-count {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--vm-radius-pill);
  background: var(--vm-ink);
  color: var(--vm-paper);
  font-family: "Chivo", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.blg-catalog {
  padding-block: var(--vm-space-5) var(--vm-space-6);
  color: var(--vm-ink);
}

.blg-panel + .blg-panel {
  margin-top: var(--vm-space-7);
}

.blg-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .65fr);
  gap: var(--vm-space-5);
  align-items: end;
  margin-bottom: var(--vm-space-4);
  padding-bottom: var(--vm-space-4);
  border-bottom: 1px solid var(--vm-line-soft);
}

.blg-panel__head .c-kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--vm-space-3);
}

.blg-panel__head h2 {
  margin: 0;
  font-size: var(--vm-fs-5);
  line-height: 1.2;
}

.blg-panel__head p {
  margin: 0;
  color: var(--vm-muted);
  line-height: 1.65;
}

.blg-magazine {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: var(--vm-space-4);
}

.blg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vm-space-4);
  align-items: stretch;
}

.blog-card {
  min-width: 0;
  color: var(--vm-ink);
  text-decoration: none;
}

.blg-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--vm-radius-md);
  background: var(--vm-paper);
  color: var(--vm-ink);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.blg-featured:hover {
  background: var(--vm-surface);
  transform: translateY(-2px);
  box-shadow: var(--vm-shadow-soft);
}

.blg-featured:focus-visible {
  outline: 3px solid var(--vm-orange);
  outline-offset: 3px;
}

.blg-featured__media {
  position: relative;
  min-width: 0;
  background: var(--vm-ink);
  color: #fff;
}

.blg-featured__img,
.blg-featured__shade {
  display: none;
}

.blg-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blg-featured__shade {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--vm-ink) 72%, transparent);
}

.blg-featured__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--vm-space-3);
  padding: var(--vm-space-5);
  color: #fff;
}

.blg-featured__overlay .blg-featured__pill,
.blg-featured__overlay .blg-featured__hl {
  color: #fff;
}

.blg-featured__pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: .45em .85em;
  border-radius: var(--vm-radius-pill);
  background: var(--vm-amber);
  color: var(--vm-ink);
  font-family: "Albert Sans", sans-serif;
  font-size: var(--vm-fs-0);
  font-weight: 700;
  line-height: 1.2;
}

.blg-featured__hl {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: var(--vm-fs-4);
  line-height: 1.22;
}

.blg-featured__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: var(--vm-space-4) var(--vm-space-5);
  color: var(--vm-ink);
}

.blg-featured__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--vm-muted);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blg-featured__meta {
  margin-top: auto;
  padding-top: var(--vm-space-3);
}

.blg-featured__hint {
  color: var(--vm-muted);
  font-family: "Chivo", sans-serif;
  font-size: var(--vm-fs-0);
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
}

.blg-magazine .blg-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--vm-line-soft);
  border-bottom: 1px solid var(--vm-line-soft);
  border-radius: 0;
}

.blg-magazine .blg-featured__media {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--vm-ink);
}

.blg-magazine .blg-featured__overlay {
  width: 100%;
  padding: var(--vm-space-5);
  color: var(--vm-ink);
}

.blg-magazine .blg-featured__overlay .blg-featured__pill {
  background: var(--vm-amber);
  color: var(--vm-ink);
}

.blg-magazine .blg-featured__overlay .blg-featured__hl {
  color: var(--vm-ink);
}

.blg-magazine .blg-featured__body {
  justify-content: center;
  border-top: 1px solid var(--vm-line-soft);
}

.blg-magazine .blg-featured__excerpt {
  font-size: var(--vm-fs-2);
}

.blg-featured.blg-compact {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: var(--vm-radius-md);
  background: var(--vm-surface);
}

.blg-featured.blg-compact .blg-featured__media {
  display: block;
  flex: none;
  height: 10.5rem;
  background: var(--vm-ink);
}

.blg-featured.blg-compact .blg-featured__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blg-featured.blg-compact .blg-featured__body {
  min-height: 0;
  padding: var(--vm-space-3);
}

.blg-featured.blg-compact .blg-featured__pill {
  margin-bottom: var(--vm-space-3);
  background: var(--vm-surface);
  color: var(--vm-orange-paper);
}

.blg-featured.blg-compact .blg-featured__hl {
  margin-bottom: var(--vm-space-3);
  color: var(--vm-ink);
  font-size: var(--vm-fs-2);
  line-height: 1.3;
}

.blg-featured.blg-compact .blg-featured__excerpt {
  -webkit-line-clamp: 2;
}

.blg-empty {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: var(--vm-space-5);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-surface);
  color: var(--vm-ink);
}

.blg-empty__copy {
  padding: var(--vm-space-5);
}

.blg-empty__copy .c-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--vm-space-3);
}

.blg-empty__copy h3 {
  margin: 0;
  font-size: var(--vm-fs-3);
}

.blg-empty__copy p {
  margin: var(--vm-space-3) 0 0;
  color: var(--vm-muted);
  line-height: 1.65;
}

.blg-empty__links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--vm-paper);
  color: var(--vm-ink);
}

.blg-empty__links a {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: var(--vm-space-3);
  align-items: center;
  padding: var(--vm-space-4);
  border-bottom: 1px solid var(--vm-line-soft);
  color: var(--vm-ink);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.blg-empty__links a:last-child {
  border-bottom: 0;
}

.blg-empty__links a:hover,
.blg-empty__links a:focus-visible {
  background: var(--vm-amber);
}

.blg-empty__links span {
  color: var(--vm-muted);
  font-size: var(--vm-fs-0);
}

.blg-empty__links a:hover span,
.blg-empty__links a:focus-visible span {
  color: var(--vm-ink);
}

.blg-empty__links strong {
  overflow-wrap: anywhere;
}

.blg-closing {
  background: var(--vm-paper);
}

.blg-closing .c-closing {
  overflow: hidden;
  border-radius: var(--vm-radius-lg);
  background: var(--vm-ink);
  color: var(--vm-paper);
}

.blg-closing .c-closing-inner {
  padding: var(--vm-space-5);
}

.blg-closing .c-closing h2,
.blg-closing .c-closing p {
  color: var(--vm-paper);
}

.blg-closing .c-closing h2 {
  margin: 0;
}

.blg-closing .c-closing p {
  max-width: 46rem;
  margin: var(--vm-space-3) 0 0;
  line-height: 1.65;
}

.blg-closing__kicker {
  margin-bottom: var(--vm-space-3);
  padding: .45em .8em;
  background: var(--vm-amber);
  border-radius: 999px;
  color: var(--vm-ink);
}

.blg-closing .c-btn-ghost {
  border-color: color-mix(in srgb, currentColor 40%, transparent);
  color: var(--vm-paper);
}

.article-page {
  padding-bottom: var(--vm-space-7);
}

.article-reading,
.article-hero,
.blog-article-body {
  width: min(100%, 54rem);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.article-reading--crumb {
  padding-top: var(--vm-space-4);
}

.article-breadcrumb ol {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--vm-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-breadcrumb li {
  min-width: 0;
  color: var(--vm-muted);
}

.article-breadcrumb li + li::before {
  margin-right: var(--vm-space-2);
  color: var(--vm-muted);
  content: "/";
}

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

.article-breadcrumb a {
  color: var(--vm-orange-paper);
}

.article-header {
  padding-top: var(--vm-space-5);
  padding-bottom: var(--vm-space-4);
}

.article-header > .c-kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--vm-space-3);
  align-self: flex-start;
}

.article-header h1 {
  max-width: 20ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: var(--vm-fs-6);
  line-height: 1.16;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vm-space-2);
  align-items: center;
  margin-top: var(--vm-space-4);
}

.blog-article-date,
.blog-article-lead {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin: 0;
  padding: .55em .9em;
  border-radius: var(--vm-radius-pill);
  font-size: var(--vm-fs-0);
  line-height: 1.3;
}

.blog-article-date {
  background: var(--vm-ink);
  color: var(--vm-paper);
  font-variant-numeric: tabular-nums;
}

.blog-article-lead {
  gap: .35em;
  background: var(--vm-surface);
  color: var(--vm-ink);
}

.article-hero {
  margin-top: var(--vm-space-3);
  margin-bottom: var(--vm-space-5);
}

.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 {
  color: var(--vm-ink);
  font-size: max(16px, var(--vm-fs-1));
  line-height: 1.75;
}

.blog-article-body h2,
.blog-article-body h3 {
  color: var(--vm-ink);
  overflow-wrap: anywhere;
  scroll-margin-top: 7rem;
}

.blog-article-body h2 {
  margin: 44px 0 16px;
  font-size: var(--vm-fs-4);
  line-height: 1.25;
}

.blog-article-body h3 {
  margin: 28px 0 12px;
  font-size: var(--vm-fs-3);
  line-height: 1.3;
}

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

.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 24px;
  padding-left: 1.4em;
}

.blog-article-body li + li {
  margin-top: 8px;
}

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

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

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

.blog-article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.blog-article-body :not(pre) > code {
  padding: .16em .38em;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-surface);
  color: var(--vm-orange-paper);
  overflow-wrap: anywhere;
}

.blog-article-body blockquote {
  margin: 24px 0;
  padding: var(--vm-space-3) var(--vm-space-4);
  border-left: 4px solid var(--vm-amber);
  background: var(--vm-surface);
  color: var(--vm-ink);
}

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

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

.blog-article-body dt {
  margin-top: var(--vm-space-3);
  color: var(--vm-ink);
  font-weight: 700;
}

.blog-article-body dd {
  margin: var(--vm-space-2) 0 0;
  padding-left: var(--vm-space-3);
  border-left: 2px solid var(--vm-line-soft);
  color: var(--vm-muted);
}

.blog-article-body mark {
  padding: 0 .14em;
  background: linear-gradient(transparent 35%, color-mix(in srgb, var(--vm-amber) 48%, transparent) 35%);
  color: var(--vm-ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

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

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

.blog-article-body figure img,
.blog-article-body > img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--vm-radius-md);
  box-shadow: var(--vm-shadow-soft);
}

.blog-article-body figcaption {
  margin-top: var(--vm-space-2);
  color: var(--vm-muted);
  font-size: var(--vm-fs-0);
  text-align: center;
}

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

.blog-article-body table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  background: var(--vm-paper);
  color: var(--vm-ink);
  font-size: 15px;
}

.blog-article-body > table {
  display: table;
  width: 100%;
  margin: 24px 0;
}

.blog-article-body th,
.blog-article-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--vm-line-soft);
  text-align: left;
  vertical-align: top;
}

.blog-article-body th {
  background: var(--vm-surface);
  color: var(--vm-ink);
  font-weight: 700;
}

.article-toc {
  margin: 0 0 28px;
  padding: var(--vm-space-4);
  border-left: 4px solid var(--vm-amber);
  border-radius: var(--vm-radius-md);
  background: var(--vm-surface);
  color: var(--vm-ink);
}

.article-toc__title {
  margin: 0 0 var(--vm-space-3);
  color: var(--vm-ink);
  font-family: "Albert Sans", sans-serif;
  font-size: var(--vm-fs-2);
  font-weight: 700;
}

.article-toc__list,
.article-toc__sublist {
  margin-bottom: 0;
}

.article-toc__list {
  padding-left: 1.4em;
}

.article-toc__list li::marker,
.article-toc__sublist li::marker {
  color: var(--vm-orange-paper);
  font-weight: 700;
}

.article-toc__sublist {
  margin-top: var(--vm-space-2);
  padding-left: 1.2em;
}

.article-faq {
  margin-top: 32px;
}

.article-faq__item {
  background: var(--vm-paper);
  color: var(--vm-ink);
  border-top: 1px solid var(--vm-line-soft);
}

.article-faq__item:last-child {
  border-bottom: 1px solid var(--vm-line-soft);
}

.article-faq__q {
  padding: 16px 0;
  color: var(--vm-ink);
  font-weight: 700;
  cursor: pointer;
}

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

.article-faq__a {
  padding: 14px 0 16px;
  border-top: 1px solid var(--vm-line-soft);
  color: var(--vm-ink);
}

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

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

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

.article-further-reading ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--vm-space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.article-cta-link {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--vm-space-3);
  padding: var(--vm-space-3);
  border: 1px solid var(--vm-line-soft);
  border-radius: var(--vm-radius-md);
  background: var(--vm-paper);
  color: var(--vm-ink);
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.article-cta-link::after {
  flex: 0 0 auto;
  content: "→";
}

.article-cta-link:hover,
.article-cta-link:focus-visible {
  background: var(--vm-amber);
  color: var(--vm-ink);
  transform: translateY(-2px);
}

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

.article-mac-promo .c-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--vm-space-3);
  background: var(--vm-ink);
  color: var(--vm-paper);
}

.article-mac-promo h2 {
  margin: 0;
  color: var(--vm-ink);
}

.article-mac-promo p {
  margin: var(--vm-space-3) 0 0;
  color: var(--vm-ink);
}

.article-mac-promo .c-btn-dark {
  min-width: 12rem;
  background: var(--vm-paper);
  color: var(--vm-ink);
}

.article-float {
  position: fixed;
  right: var(--vm-space-4);
  bottom: var(--vm-space-4);
  z-index: 90;
  width: min(18rem, calc(100vw - 32px));
  overflow: hidden;
  padding: var(--vm-space-3);
  border-top: 5px solid var(--vm-amber);
  border-radius: var(--vm-radius-md);
  background: var(--vm-ink);
  color: var(--vm-paper);
  box-shadow: var(--vm-shadow);
}

.article-float__bar {
  display: flex;
  justify-content: flex-end;
}

.article-float__close {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vm-line-dark);
  border-radius: var(--vm-radius-pill);
  background: transparent;
  color: var(--vm-paper);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.article-float__close:hover,
.article-float__close:focus-visible {
  background: var(--vm-amber);
  color: var(--vm-ink);
}

.article-float__title {
  margin: var(--vm-space-2) 0 var(--vm-space-3);
  color: var(--vm-paper);
  font-family: "Albert Sans", sans-serif;
  font-size: var(--vm-fs-2);
  font-weight: 700;
  line-height: 1.3;
}

.article-float__cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 56.25rem) {
  .article-float {
    display: none;
  }
}

@media (max-width: 48rem) {
  .blg-hero__grid,
  .blg-panel__head,
  .blg-magazine .blg-featured,
  .blg-empty,
  .article-mac-promo,
  .blg-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blg-hero__copy h1 {
    max-width: none;
  }

  .blg-panel__head {
    align-items: start;
  }

  .blg-magazine .blg-featured__body {
    border-top: 1px solid var(--vm-line-soft);
    border-left: 0;
  }

  .blg-empty__links a {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 24.375rem) {
  .blg-hero__ledger dl > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .blg-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blg-featured__overlay,
  .blg-featured__body,
  .blg-empty__copy,
  .blg-closing .c-closing-inner {
    padding-inline: var(--vm-space-3);
  }

  .article-header h1 {
    font-size: var(--vm-fs-5);
  }

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

  .blog-article-date,
  .blog-article-lead {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blg-featured,
  .article-cta-link {
    transition: none;
  }

  .blg-featured:hover,
  .article-cta-link:hover {
    transform: none;
  }
}
