@font-face {
  font-family: "Metropolis-Bold";
  src: url("/fonts/Metropolis-Bold.otf");
  font-display: swap;
}

@font-face {
  font-family: "Metropolis-Regular";
  src: url("/fonts/Metropolis-Regular.otf");
  font-display: swap;
}

:root {
  --blog-bg: #edf4fa;
  --blog-bg-elevated: #f7fbff;
  --blog-card: rgba(255, 255, 255, 0.96);
  --blog-card-strong: #ffffff;
  --blog-border: #d5e2ef;
  --blog-border-strong: #bfd3e4;
  --blog-ink: #18232f;
  --blog-ink-soft: #253545;
  --blog-copy: #4e6478;
  --blog-copy-strong: #344b61;
  --blog-copy-muted: #70859a;
  --blog-brand: #0b88f4;
  --blog-brand-soft: #64b3fb;
  --blog-brand-deep: #165d99;
  --blog-hero-start: #153958;
  --blog-hero-end: #256ca9;
  --blog-shadow-soft: 0 12px 30px rgba(28, 62, 94, 0.06);
  --blog-shadow-card: 0 22px 44px rgba(23, 56, 88, 0.08);
  --blog-radius-xl: 14px;
  --blog-radius-lg: 12px;
  --blog-radius-md: 8px;
  --blog-radius-sm: 6px;
  --blog-serif: Georgia, Cambria, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.blog-shell {
  margin: 0;
  min-height: 100vh;
  color: var(--blog-copy);
  font-family: "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(100, 179, 251, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbfe 0%, var(--blog-bg) 38%, #f4f8fc 100%);
}

body.blog-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(21, 93, 153, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 93, 153, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.blog-shell__ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.blog-shell__ambient--one {
  top: 92px;
  right: 6%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 179, 251, 0.2), transparent 62%);
  filter: blur(42px);
}

.blog-shell__ambient--two {
  top: 420px;
  left: -120px;
  width: 280px;
  height: 320px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(11, 136, 244, 0.14), transparent 80%);
  filter: blur(34px);
}

.blog-topbar,
.blog-footer,
main {
  position: relative;
  z-index: 1;
}

.blog-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-topbar {
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(11, 136, 244, 0.12);
}

.blog-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 0 2px;
}

.blog-wordmark {
  color: var(--blog-ink);
  font-family: "Metropolis-Bold", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 14px;
}

.blog-wordmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blog-brand), var(--blog-brand-soft));
  box-shadow: 0 0 0 4px rgba(11, 136, 244, 0.12);
}

.blog-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.blog-nav a,
.blog-inline-link,
.blog-breadcrumbs a,
.prose a {
  color: var(--blog-brand-deep);
  text-decoration: none;
}

.blog-nav a {
  position: relative;
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.96rem;
}

.blog-nav a[aria-current="page"],
.blog-nav a[href="/blog/"] {
  color: var(--blog-brand);
}

.blog-nav a::after,
.blog-inline-link::after,
.prose a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.blog-nav a:hover::after,
.blog-inline-link:hover::after,
.prose a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.blog-nav a:hover,
.blog-inline-link:hover,
.blog-breadcrumbs a:hover,
.prose a:hover {
  color: var(--blog-brand);
}

.blog-hero {
  padding: 14px 0 34px;
}

.blog-hero__grid,
.blog-overview-grid,
.blog-featured-grid,
.blog-card-grid,
.blog-cta-rail,
.blog-article-layout {
  display: grid;
  gap: 28px;
}

.blog-hero__grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.88fr);
  align-items: stretch;
}

.blog-hero__content,
.blog-hero-card,
.blog-overview-card,
.blog-cta-rail,
.blog-article-card,
.blog-rail-card,
.blog-card {
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-xl);
  background: var(--blog-card);
  box-shadow: var(--blog-shadow-card);
}

.blog-hero__content {
  position: relative;
  overflow: hidden;
  padding: 38px 40px 40px;
  color: #eef6ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, var(--blog-hero-start), var(--blog-hero-end));
  border-color: rgba(29, 91, 143, 0.32);
}

.blog-hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(0deg, rgba(9, 26, 43, 0.08), transparent 36%);
  pointer-events: none;
}

.blog-hero__content > * {
  position: relative;
  z-index: 1;
}

.blog-hero__content h1,
.blog-section-heading h2,
.blog-overview-card h2,
.blog-cta-rail h2,
.blog-card h3,
.blog-rail-card h2,
.prose h2,
.prose h3,
.prose h4 {
  margin: 0;
  color: var(--blog-ink);
  font-family: "Metropolis-Bold", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.blog-hero__content h1 {
  max-width: 10.5ch;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.blog-eyebrow,
.blog-card__tag,
.blog-rail-card__eyebrow,
.blog-hero-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: inherit;
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.blog-dek {
  max-width: 54ch;
  margin: 18px 0 0;
  color: rgba(238, 246, 255, 0.92);
  font-size: 1.16rem;
  line-height: 1.8;
}

.blog-hero__actions,
.blog-card__meta,
.blog-meta,
.blog-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.blog-hero__actions {
  margin-top: 30px;
}

.blog-button,
.blog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: "Metropolis-Bold", sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.blog-button {
  background: linear-gradient(135deg, #0b88f4, #52aaf8);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 136, 244, 0.22);
}

.blog-button:hover,
.blog-card__link:hover {
  transform: translateY(-1px);
}

.blog-button:hover,
.blog-button:focus {
  background: linear-gradient(135deg, #0a7ad9, #429de9);
}

.blog-button--secondary,
.blog-card__link {
  background: transparent;
  color: var(--blog-brand-deep);
  border-color: rgba(21, 93, 153, 0.24);
  box-shadow: none;
}

.blog-button--secondary:hover,
.blog-card__link:hover {
  border-color: rgba(11, 136, 244, 0.42);
  color: var(--blog-brand);
}

.blog-hero-card,
.blog-overview-card,
.blog-rail-card {
  padding: 28px 30px;
}

.blog-hero-card {
  background: rgba(255, 255, 255, 0.98);
}

.blog-hero-card__eyebrow,
.blog-rail-card__eyebrow {
  color: var(--blog-copy-muted);
}

.blog-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--blog-copy-strong);
  line-height: 1.7;
}

.blog-checklist li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blog-brand);
}

.blog-section {
  padding: 12px 0 34px;
}

.blog-section--cards {
  padding-top: 4px;
}

.blog-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-overview-card {
  padding: 26px 28px;
  box-shadow: var(--blog-shadow-soft);
}

.blog-overview-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.blog-overview-card p,
.blog-card p,
.blog-cta-rail p,
.blog-hero-card li,
.blog-rail-card p,
.blog-footer,
.blog-footer span {
  color: var(--blog-copy);
  line-height: 1.82;
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.blog-section-heading h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
}

.blog-featured-grid,
.blog-card-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.blog-card-grid {
  display: grid;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.98);
}

.blog-card--featured {
  position: relative;
  overflow: hidden;
}

.blog-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--blog-brand), rgba(100, 179, 251, 0.38));
}

.blog-card__body {
  display: grid;
  gap: 14px;
}

.blog-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card__tag,
.blog-card__badge,
.blog-status-badge {
  min-height: 29px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 136, 244, 0.12);
  border: 1px solid rgba(11, 136, 244, 0.12);
  color: var(--blog-brand-deep);
}

.blog-card__badge,
.blog-status-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 0.8rem;
}

.blog-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.blog-card h3 a {
  color: var(--blog-ink);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--blog-brand-deep);
}

.blog-card__meta,
.blog-meta {
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.9rem;
  color: var(--blog-copy-muted);
}

.blog-card__link {
  align-self: start;
}

.blog-inline-link {
  position: relative;
  font-family: "Metropolis-Bold", sans-serif;
  font-size: 0.95rem;
}

.blog-cta-rail {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 32px 34px;
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(11, 136, 244, 0.16);
  position: relative;
}

.blog-cta-rail::before,
.blog-article-card::before,
.blog-article-cta::before,
.blog-rail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 136, 244, 0.95), rgba(100, 179, 251, 0.4));
}

.blog-cta-rail h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(238, 246, 255, 0.72);
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.86rem;
}

.blog-breadcrumbs a {
  color: #ffffff;
}

.blog-hero--article {
  padding-top: 10px;
}

.blog-hero--article-video {
  padding-bottom: 18px;
}

.blog-hero--article-video .blog-container {
  width: min(920px, calc(100% - 40px));
}

.blog-hero__content--article {
  padding: 36px 36px 34px;
}

.blog-hero__content--editorial {
  padding: 30px 34px 28px;
  color: var(--blog-ink);
  background: rgba(255, 255, 255, 0.985);
  border-color: rgba(11, 136, 244, 0.16);
  box-shadow: var(--blog-shadow-soft);
}

.blog-hero__content--editorial::before {
  display: none;
}

.blog-hero__content--editorial h1 {
  max-width: 18ch;
  color: var(--blog-ink);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.blog-hero__content--editorial .blog-eyebrow {
  color: var(--blog-brand-deep);
}

.blog-hero__content--editorial .blog-breadcrumbs {
  margin-bottom: 18px;
  color: var(--blog-copy-muted);
}

.blog-hero__content--editorial .blog-breadcrumbs a {
  color: var(--blog-brand-deep);
}

.blog-hero__content--editorial .blog-dek {
  max-width: 62ch;
  color: var(--blog-copy-strong);
  font-size: 1.08rem;
  line-height: 1.72;
}

.blog-hero__content--editorial .blog-meta {
  margin-top: 20px;
  padding-top: 16px;
  color: var(--blog-copy-muted);
  border-top: 1px solid rgba(21, 93, 153, 0.12);
}

.blog-meta {
  align-items: center;
  margin-top: 24px;
  color: rgba(238, 246, 255, 0.78);
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-lead-media {
  margin: 18px 0 0;
}

.blog-lead-media__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(11, 136, 244, 0.18);
  border-radius: var(--blog-radius-xl);
  background: #08131d;
  box-shadow: 0 24px 44px rgba(18, 39, 61, 0.12);
}

.blog-lead-media__frame iframe {
  width: 100%;
  height: 100%;
}

.blog-lead-media__caption {
  margin-top: 12px;
  padding: 0 6px;
  color: var(--blog-copy-muted);
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  border-left: 3px solid rgba(11, 136, 244, 0.5);
  padding-left: 12px;
}

.blog-article-layout {
  grid-template-columns: minmax(0, 1.72fr) minmax(280px, 0.78fr);
  align-items: start;
}

.blog-article-flow {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.blog-article-card {
  position: relative;
  padding: 38px 40px 42px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 28px 54px rgba(23, 56, 88, 0.07);
  border-color: rgba(11, 136, 244, 0.14);
}

.blog-article-card--editorial {
  box-shadow: var(--blog-shadow-soft);
}

.blog-article-body {
  max-width: 720px;
}

.blog-article-body--editorial {
  max-width: none;
  margin: 0;
}

.blog-article-cta {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 24px 28px 26px;
  border: 1px solid rgba(11, 136, 244, 0.16);
  border-radius: var(--blog-radius-lg);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: var(--blog-shadow-soft);
}

.blog-article-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--blog-brand-deep);
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.blog-article-cta h2 {
  margin: 0 0 10px;
  color: var(--blog-ink);
  font-family: "Metropolis-Bold", sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.blog-article-cta p {
  margin: 0;
  color: var(--blog-copy);
  line-height: 1.72;
}

.blog-article-cta .blog-button {
  margin-top: 16px;
}

.prose {
  color: var(--blog-copy-strong);
  font-family: var(--blog-serif);
  font-size: 1.14rem;
  line-height: 1.95;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > * + * {
  margin-top: 1.08em;
}

.prose p,
.prose li,
.prose figcaption {
  color: var(--blog-copy-strong);
  font-family: var(--blog-serif);
}

.prose p {
  max-width: 66ch;
}

.prose h2,
.prose h3,
.prose h4 {
  max-width: 16ch;
  color: var(--blog-ink);
}

.prose h2 {
  margin-top: 1.45em;
  margin-bottom: 0.45em;
  font-size: clamp(2rem, 3vw, 2.9rem);
  position: relative;
  padding-top: 0.32em;
}

.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blog-brand), rgba(100, 179, 251, 0.38));
}

.prose h3 {
  margin-top: 1.25em;
  margin-bottom: 0.42em;
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

.prose h4 {
  margin-top: 1.15em;
  margin-bottom: 0.35em;
  font-size: 1.28rem;
}

.prose strong {
  color: var(--blog-ink);
}

.prose ul,
.prose ol {
  max-width: 62ch;
  padding-left: 1.2em;
}

.prose li {
  padding-left: 0.18em;
}

.prose li + li {
  margin-top: 0.5em;
}

.prose a {
  position: relative;
  color: var(--blog-brand-deep);
}

.prose a::after {
  bottom: 0;
}

.prose blockquote {
  position: relative;
  max-width: 62ch;
  margin: 2em 0;
  padding: 28px 30px 28px 34px;
  border: 1px solid rgba(11, 136, 244, 0.12);
  border-left: 4px solid var(--blog-brand);
  border-radius: 0 var(--blog-radius-lg) var(--blog-radius-lg) 0;
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.92), rgba(247, 250, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.prose blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(11, 136, 244, 0.18);
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
}

.prose blockquote p {
  margin: 0;
  color: var(--blog-copy-strong);
  font-size: 1.06em;
}

.callout {
  max-width: 62ch;
  margin: 2.1em 0;
  padding: 22px 24px;
  border: 1px solid var(--blog-border-strong);
  border-radius: var(--blog-radius-md);
  background: rgba(250, 253, 255, 0.98);
  color: var(--blog-copy-strong);
  box-shadow: var(--blog-shadow-soft);
}

.callout strong {
  color: var(--blog-ink);
  font-family: "Metropolis-Bold", sans-serif;
}

.article-inline-visual {
  max-width: 62ch;
  margin: 2.2em 0;
  padding: 24px;
  border: 1px solid rgba(11, 136, 244, 0.14);
  border-radius: var(--blog-radius-lg);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--blog-shadow-soft);
}

.article-inline-visual img {
  display: block;
  width: min(100%, 460px);
  margin: 0 auto;
  border: 1px solid rgba(21, 93, 153, 0.1);
  border-radius: var(--blog-radius-lg);
  box-shadow: 0 18px 32px rgba(21, 60, 94, 0.1);
}

.article-inline-visual figcaption {
  margin-top: 14px;
  text-align: center;
  color: var(--blog-copy-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.blog-rail {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 22px;
}

.blog-rail-card {
  position: relative;
  padding: 24px 24px 26px;
  box-shadow: var(--blog-shadow-soft);
  border-color: rgba(11, 136, 244, 0.14);
}

.blog-rail-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.blog-rail-card .blog-button {
  margin-top: 14px;
  width: 100%;
}

.blog-rail-card--muted {
  background: rgba(255, 255, 255, 0.98);
}

.blog-footer {
  padding: 38px 0 40px;
}

.blog-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(11, 136, 244, 0.16);
}

.blog-footer__links {
  align-items: center;
}

.blog-footer__links a {
  color: var(--blog-brand-deep);
  font-family: "Metropolis-Bold", sans-serif;
  text-decoration: none;
}

.blog-footer__links a:hover {
  color: var(--blog-brand);
}

.blog-footer__copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 16px auto 0;
  color: var(--blog-copy-muted);
}

code {
  display: inline-flex;
  align-items: center;
  min-height: 1.8em;
  padding: 0.06em 0.5em;
  border-radius: 999px;
  background: rgba(21, 93, 153, 0.08);
  color: var(--blog-brand-deep);
  font-family: "Metropolis-Regular", sans-serif;
  font-size: 0.9em;
}

a:focus-visible,
button:focus-visible,
.blog-button:focus-visible,
.blog-card__link:focus-visible {
  outline: 2px solid rgba(11, 136, 244, 0.56);
  outline-offset: 3px;
}

@media (min-width: 860px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .blog-hero__content h1 {
    max-width: 12ch;
  }

  .blog-hero__content--editorial h1 {
    max-width: 16ch;
  }

  .blog-article-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.82fr);
  }
}

@media (max-width: 960px) {
  .blog-hero__grid,
  .blog-overview-grid,
  .blog-cta-rail,
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-topbar__inner,
  .blog-section-heading,
  .blog-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .blog-rail {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-container,
  .blog-footer__copyright {
    width: min(100% - 22px, 1160px);
  }

  .blog-topbar {
    padding: 18px 0 10px;
  }

  .blog-hero__content,
  .blog-hero-card,
  .blog-overview-card,
  .blog-card,
  .blog-cta-rail,
  .blog-article-card,
  .blog-rail-card,
  .blog-article-cta {
    padding: 22px;
    border-radius: 18px;
  }

  .blog-lead-media__frame {
    border-radius: 12px;
  }

  .blog-hero__content h1,
  .prose h2,
  .prose h3,
  .prose h4 {
    max-width: none;
  }

  .blog-dek,
  .prose {
    font-size: 1.05rem;
  }

  .blog-hero__actions,
  .blog-meta,
  .blog-card__meta,
  .blog-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-button,
  .blog-card__link {
    width: 100%;
  }

  .prose blockquote,
  .callout,
  .article-inline-visual {
    padding: 20px;
  }
}
