.blog-page {
  --blog-surface-light: #f5f1eb;
  --blog-surface-soft: #f2ebe3;
  --blog-surface-white: #fff;
  --blog-surface-muted: #f6f7f8;
  --blog-surface-dark: #141414;
  --blog-surface-dark-alt: #181a19;
  --blog-text-primary: #141414;
  --blog-text-secondary: #4a4a4a;
  --blog-text-support: #4f5d52;
  --blog-text-on-dark: #f5f1eb;
  --blog-border: #d6d0c8;
  --blog-accent: #b85c38;
  --blog-accent-hover: #a04f30;
  color: var(--blog-text-primary);
  font-family: GeneralSans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: clip;
}

.blog-page--show {
  background: var(--blog-surface-soft);
}

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

.blog-page img,
.blog-page svg {
  display: block;
  max-width: 100%;
}

.blog-page a {
  color: inherit;
}

.blog-button,
.blog-topbar__cta,
.blog-load-more__button,
.blog-filter-chip,
.blog-share__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 100ms ease, box-shadow 150ms ease;
}

.blog-button:focus-visible,
.blog-topbar__cta:focus-visible,
.blog-load-more__button:focus-visible,
.blog-filter-chip:focus-visible {
  outline: 2px solid var(--blog-accent);
  outline-offset: 2px;
}

.blog-share__button:focus-visible {
  outline: 2px solid var(--blog-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.blog-button:active,
.blog-topbar__cta:active,
.blog-load-more__button:active,
.blog-filter-chip:active {
  transform: scale(0.97);
}

.blog-button,
.blog-topbar__cta,
.blog-load-more__button {
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.225px;
  line-height: 18px;
}

.blog-button--accent {
  padding-inline: 24px;
  border-radius: 12px;
  background: var(--blog-accent);
  color: var(--blog-text-on-dark);
}

.blog-button--accent,
.blog-button--accent:visited,
.blog-button--accent:hover,
.blog-button--accent:active {
  color: var(--blog-text-on-dark);
}

.blog-button--accent:hover {
  background: var(--blog-accent-hover);
}

.blog-button--accent:active {
  background: color-mix(in srgb, var(--blog-accent) 76%, black);
}

.blog-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  transform: translateX(-50%);
  transition: padding 0.3s ease;
}

.blog-topbar--scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}

.blog-topbar--scrolled .blog-topbar__link,
.blog-topbar--scrolled .blog-topbar__links,
.blog-topbar--scrolled .blog-topbar__cta {
  font-size: 13px;
}

.blog-topbar--scrolled .blog-topbar__link {
  transition: font-size 0.3s ease, opacity 150ms ease;
}

.blog-topbar--scrolled .blog-topbar__cta {
  transition: font-size 0.3s ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 100ms ease;
}

.blog-topbar--scrolled .blog-topbar__logo {
  width: 96px;
  height: 23px;
  transition: width 0.3s ease, height 0.3s ease;
}

.blog-topbar__brand {
  display: inline-flex;
  align-items: center;
  color: var(--blog-text-primary);
}

.blog-topbar__logo {
  width: 119px;
  height: 29px;
  transition: width 0.3s ease, height 0.3s ease;
}

.blog-topbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-topbar__links {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  color: var(--blog-text-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.225px;
  line-height: 18px;
}

.blog-topbar__link {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--blog-text-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.225px;
  line-height: 18px;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.blog-topbar__link:hover {
  opacity: 0.7;
}

.blog-topbar__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}

.blog-topbar__cta {
  border-color: var(--blog-surface-dark);
  color: var(--blog-text-primary);
}

.blog-topbar__cta:hover {
  background: rgb(20 20 20 / 0.04);
}

.blog-load-more__button {
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.blog-load-more__button:hover {
  background: rgb(20 20 20 / 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(20 20 20 / 0.08);
}

.blog-topbar--dark {
  color: var(--blog-text-on-dark);
}

.blog-topbar--dark .blog-topbar__links,
.blog-topbar--dark .blog-topbar__brand,
.blog-topbar--dark .blog-topbar__link {
  color: var(--blog-text-on-dark);
}

.blog-topbar__cta--dark {
  border-color: var(--blog-surface-light);
  color: var(--blog-text-on-dark);
}

.blog-topbar__cta--dark:hover {
  background: rgb(245 241 235 / 0.08);
}

.blog-topbar--light-surface .blog-topbar__cta--dark {
  border-color: var(--blog-surface-dark);
  color: var(--blog-text-primary);
}

.blog-topbar--light-surface .blog-topbar__cta--dark:hover {
  background: rgb(20 20 20 / 0.04);
}

.topbar-contrast {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.topbar-contrast__layer {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-contrast__layer--light {
  color: var(--blog-text-on-dark);
}

.topbar-contrast__layer--dark {
  color: var(--blog-text-primary);
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
}

.blog-index__hero {
  position: relative;
  min-height: 480px;
  background: var(--blog-surface-light);
}

.blog-index__hero.section-light {
  background: var(--blog-surface-light);
}

.blog-index__hero-inner {
  padding: 148px 56px 116px;
}

.blog-index__title,
.blog-index__subtitle,
.blog-index__count,
.blog-post-row__eyebrow,
.blog-post-row__title,
.blog-post-row__excerpt,
.blog-post-row__meta,
.blog-featured-post__title,
.blog-featured-post__excerpt,
.blog-featured-post__meta,
.blog-related__title,
.blog-related-card__eyebrow,
.blog-related-card__title,
.blog-related-card__excerpt,
.blog-related-card__meta,
.blog-article__title,
.blog-article__dek,
.blog-article__meta-label,
.blog-article__meta-value,
.blog-article__meta-values p,
.blog-share__label,
.blog-share__status,
.blog-waitlist__title,
.blog-waitlist__note {
  margin: 0;
}

.blog-index__title {
  max-width: 1104px;
  color: var(--blog-text-primary);
  font-size: 104px;
  font-weight: 600;
  letter-spacing: -3.12px;
  line-height: 107px;
}

.blog-index__subtitle {
  max-width: 882px;
  margin-top: 36px;
  color: var(--blog-text-secondary);
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
}

.blog-index__content {
  max-width: 1440px;
  margin-inline: auto;
  background: var(--blog-surface-white);
  padding: 44px 56px 96px;
}

.blog-index__content turbo-frame {
  display: block;
}

.blog-index__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.blog-index__count-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}

.blog-filter-chip {
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--blog-surface-light);
  color: var(--blog-text-primary);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.255px;
  line-height: 24px;
  text-decoration: none;
}

.blog-filter-chip:hover {
  background: #eee4d8;
}

.blog-filter-chip.blog-filter-chip--active,
.blog-filter-chip.blog-filter-chip--active:hover {
  background: var(--blog-surface-dark);
  color: var(--blog-text-on-dark);
}

.blog-index__count {
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
}

.blog-index__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}

.blog-post-row {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.blog-post-row__image-link,
.blog-related-card__image-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
}

.blog-post-row__image,
.blog-related-card__image,
.blog-article__hero-image {
  width: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-post-row:hover .blog-post-row__image,
.blog-post-row:focus-within .blog-post-row__image,
.blog-related-card:hover .blog-related-card__image,
.blog-related-card:focus-within .blog-related-card__image {
  transform: scale(1.04);
}

.blog-post-row__image {
  aspect-ratio: 285 / 210;
  border-radius: 16px;
}

.blog-post-row__image--placeholder,
.blog-related-card__image--placeholder,
.blog-article__hero-image--placeholder {
  background:
    linear-gradient(135deg, rgb(20 20 20 / 0.16), transparent 55%),
    linear-gradient(180deg, #6f7d72, #24404e 48%, #1e2532);
}

.blog-post-row__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-top: 4px;
}

.blog-post-row__eyebrow,
.blog-related-card__eyebrow,
.blog-article__meta-label,
.blog-share__label {
  color: var(--blog-text-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.04px;
  line-height: 16px;
  text-transform: uppercase;
}

.blog-post-row__title,
.blog-related-card__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 34px;
}

.blog-post-row__title a,
.blog-related-card__title a {
  text-decoration: none;
  transition: color 150ms ease;
}

.blog-post-row:hover .blog-post-row__title a,
.blog-post-row:focus-within .blog-post-row__title a,
.blog-related-card:hover .blog-related-card__title a,
.blog-related-card:focus-within .blog-related-card__title a,
.blog-post-row__title a:hover,
.blog-related-card__title a:hover {
  color: var(--blog-accent);
}

.blog-post-row__excerpt {
  max-width: 720px;
  color: var(--blog-text-secondary);
  font-size: 19px;
  font-weight: 400;
  line-height: 31px;
}

.blog-post-row__meta,
.blog-related-card__meta {
  margin-top: 23px;
  color: var(--blog-text-support);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.blog-featured-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--blog-border);
}


.blog-featured-post__image-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
}

.blog-featured-post__image {
  aspect-ratio: 1440 / 440;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-featured-post:hover .blog-featured-post__image,
.blog-featured-post:focus-within .blog-featured-post__image,
.blog-featured-post__image-link:hover .blog-featured-post__image {
  transform: scale(1.02);
}

.blog-featured-post__image--placeholder {
  background: linear-gradient(180deg, #141414 0%, #181a19 38%, #422a1f 65%, #773e28 100%);
}

.blog-featured-post__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-featured-post__title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 52px;
}

.blog-featured-post__title a {
  text-decoration: none;
  transition: color 150ms ease;
}

.blog-featured-post:hover .blog-featured-post__title a,
.blog-featured-post:focus-within .blog-featured-post__title a,
.blog-featured-post__title a:hover {
  color: var(--blog-accent);
}

.blog-featured-post__excerpt {
  color: var(--blog-text-secondary);
  font-size: 21px;
  font-weight: 400;
  line-height: 33px;
}

.blog-featured-post__meta {
  margin-top: 4px;
  color: var(--blog-text-support);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.blog-index__load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.blog-load-more__button {
  border-color: var(--blog-surface-dark);
  color: var(--blog-text-primary);
}

.blog-article__hero {
  background:
    linear-gradient(180deg, var(--blog-surface-dark) 0%, var(--blog-surface-dark-alt) 23%, #773e28 59%);
  color: var(--blog-text-on-dark);
}

.blog-article__hero.section-dark {
  background:
    linear-gradient(180deg, var(--blog-surface-dark) 0%, var(--blog-surface-dark-alt) 23%, #773e28 59%);
}

.blog-article__hero-inner,
.blog-article__content-grid,
.blog-related__inner,
.blog-waitlist__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.blog-article__hero-inner {
  padding: 120px 54px 54px;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blog-text-on-dark);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.225px;
  line-height: 18px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

.blog-article__back,
.blog-article__back:visited,
.blog-article__back:hover,
.blog-article__back:active {
  color: var(--blog-text-on-dark);
}

.blog-article__back:hover {
  text-decoration-color: currentColor;
}

.blog-article__back:focus-visible {
  outline: 2px solid var(--blog-text-on-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

.blog-article__back-icon {
  flex-shrink: 0;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-article__back:hover .blog-article__back-icon {
  transform: translateX(-4px);
}

.blog-article__hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 769px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 54px;
}

.blog-article__title {
  color: var(--blog-text-on-dark);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 65px;
}

.blog-article__dek {
  color: var(--blog-text-on-dark);
  padding-top: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.blog-article__hero-media {
  width: 100%;
  overflow: hidden;
}

.blog-article__hero-image {
  aspect-ratio: 1440 / 440;
}

.blog-article__content {
  background: var(--blog-surface-soft);
  padding: 60px 54px 96px;
}

.blog-article__content-grid {
  display: grid;
  grid-template-columns: 318px minmax(0, 769px);
  gap: 20px;
  align-items: start;
}

.blog-article__meta {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 7px;
}

.blog-article__meta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-article__meta-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-article__meta-value,
.blog-article__meta-values p {
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

.blog-article__body {
  min-width: 0;
}

.blog-prose {
  color: var(--blog-text-primary);
}

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

.blog-prose > :last-child {
  margin-bottom: 0;
}

.blog-prose h1,
.blog-prose h2,
.blog-prose h3,
.blog-prose h4,
.blog-prose h5,
.blog-prose h6 {
  margin: 48px 0 16px;
  color: var(--blog-text-primary);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.34px;
  line-height: 43px;
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 400;
  line-height: 31px;
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 28px;
}

.blog-prose li + li {
  margin-top: 6px;
}

.blog-prose a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}

.blog-prose a:hover {
  color: var(--blog-accent);
}

.blog-prose a:focus-visible {
  outline: 2px solid var(--blog-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.blog-prose figure {
  margin: 32px 0 4px;
}

.blog-prose img {
  width: 100%;
  border-radius: 16px;
}

.blog-prose strong,
.blog-prose b {
  font-weight: 600;
}

.blog-prose figcaption {
  padding: 8px 0;
  font-size: 14px;
  line-height: 20px;
}

.blog-prose hr {
  margin: 40px 0 0;
  border: 0;
  border-top: 1px solid var(--blog-border);
}

.blog-share {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--blog-border);
}

.blog-share__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.blog-share__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blog-text-primary);
  cursor: pointer;
}

.blog-share__button:hover {
  color: var(--blog-accent);
}

.blog-share__icon {
  font-size: 28px;
  line-height: 1;
}

.blog-share__status {
  margin-top: 16px;
  color: var(--blog-text-support);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.blog-related {
  background: var(--blog-surface-muted);
  padding: 44px 54px 56px;
}

.blog-related.section-light {
  background: var(--blog-surface-muted);
}

.blog-related.section-muted {
  background: var(--blog-surface-muted);
}

.blog-related__title {
  color: var(--blog-text-primary);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.34px;
  line-height: 43px;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.blog-related-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-related-card__image {
  aspect-ratio: 428 / 193;
  border-radius: 16px;
}

.blog-related-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-related-card__excerpt {
  color: var(--blog-text-secondary);
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

.blog-waitlist {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #141414 0%, #181a19 45%, #242a2c 75%, #4f5d52 100%);
  color: var(--blog-text-on-dark);
}

.blog-waitlist.section-dark {
  background: linear-gradient(180deg, #141414 0%, #181a19 45%, #242a2c 75%, #4f5d52 100%);
}

.blog-waitlist__bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(circle at 50% -10%, rgb(255 255 255 / 0.18), transparent 40%),
    linear-gradient(180deg, transparent, rgb(255 255 255 / 0.02));
  pointer-events: none;
}

.blog-waitlist__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
  padding: 126px 118px;
  text-align: center;
}

.blog-waitlist__title {
  max-width: 885px;
  color: var(--blog-text-on-dark);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 65px;
}

.blog-waitlist__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.blog-waitlist__form {
  display: flex;
  width: min(100%, 640px);
  align-items: center;
  gap: 12px;
}

.blog-waitlist__input {
  flex: 1 1 auto;
  min-width: 320px;
  padding: 17px 20px;
  border: 1px solid rgb(245 241 235 / 0.18);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.08);
  color: var(--blog-text-on-dark);
  font: inherit;
  font-size: 15px;
  line-height: 18px;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.blog-waitlist__input::placeholder {
  color: rgb(245 241 235 / 0.68);
}

.blog-waitlist__input:focus-visible {
  outline: 2px solid var(--blog-text-on-dark);
  outline-offset: 3px;
  background: rgb(255 255 255 / 0.82);
  color: var(--blog-text-primary);
}

.blog-waitlist__input:focus-visible::placeholder {
  color: rgb(20 20 20 / 0.56);
}

.blog-waitlist__note {
  color: var(--blog-text-on-dark);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

@keyframes blog-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blog-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Shared */
  .blog-topbar {
    animation: blog-fade-in 0.4s ease both;
  }

  /* Index page */
  .blog-index__hero-inner {
    animation: blog-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  }

  .blog-featured-post {
    animation: blog-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  }

  .blog-index__chips {
    animation: blog-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  }

  .blog-index__list {
    animation: blog-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }

  .blog-index__load-more {
    animation: blog-fade-in 0.5s ease 0.4s both;
  }

  /* Show page */
  .blog-article__hero-inner {
    animation: blog-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  }

  .blog-article__hero-media {
    animation: blog-fade-in 0.9s ease 0.22s both;
  }

  .blog-article__meta {
    animation: blog-fade-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
  }

  .blog-article__body {
    animation: blog-fade-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  }
}

@media (max-width: 1024px) {
  .blog-index__hero-inner,
  .blog-index__content,
  .blog-article__hero-inner,
  .blog-article__content,
  .blog-related {
    padding-left: 28px;
    padding-right: 28px;
  }

  .blog-topbar {
    padding-inline: 24px;
  }

  .blog-topbar__nav {
    gap: 16px;
  }

  .blog-index__title {
    font-size: 72px;
    line-height: 78px;
    letter-spacing: -2px;
  }

  .blog-post-row {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
  }

  .blog-article__hero-copy,
  .blog-article__content-grid {
    grid-template-columns: 1fr;
  }

  .blog-article__meta {
    gap: 24px;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .blog-waitlist__content {
    padding-inline: 28px;
  }

  .blog-waitlist__title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (max-width: 767px) {
  .blog-topbar {
    width: 100%;
    min-height: 96px;
    padding: 16px 20px;
    transform: none;
    left: 0;
    background: transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .blog-topbar__links {
    display: none;
  }

  .blog-topbar__nav {
    gap: 16px;
  }

  .blog-index__hero {
    min-height: auto;
  }

  .blog-index__hero-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .blog-index__title {
    font-size: 54px;
    line-height: 58px;
    letter-spacing: -1.4px;
  }

  .blog-index__subtitle,
  .blog-index__count {
    font-size: 18px;
    line-height: 29px;
  }


  .blog-post-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-featured-post__image {
    aspect-ratio: 16 / 9;
  }

  .blog-post-row__image {
    max-width: 320px;
  }

  .blog-featured-post__title {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -0.5px;
  }

  .blog-featured-post__excerpt {
    font-size: 18px;
    line-height: 29px;
  }

  .blog-post-row__title,
  .blog-related-card__title {
    font-size: 22px;
    line-height: 30px;
  }

  .blog-post-row__excerpt,
  .blog-prose p,
  .blog-prose ul,
  .blog-prose ol,
  .blog-prose blockquote {
    font-size: 17px;
    line-height: 28px;
  }

  .blog-article__title,
  .blog-waitlist__title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.8px;
  }

  .blog-article__dek {
    font-size: 20px;
    line-height: 31px;
  }

  .blog-prose h1,
  .blog-prose h2,
  .blog-prose h3,
  .blog-prose h4,
  .blog-prose h5,
  .blog-prose h6,
  .blog-related__title {
    font-size: 28px;
    line-height: 36px;
  }

  .blog-share__actions {
    gap: 18px;
  }

  .blog-waitlist__content {
    gap: 40px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .blog-waitlist__form {
    width: 100%;
  }

  .blog-waitlist__input {
    min-width: 0;
  }
}
