:root {
  --blog-bg: #101014;
  --blog-bg-strong: #141517;
  --blog-panel: #17161d;
  --blog-panel-muted: #28282e;
  --blog-panel-tint: rgba(158, 226, 46, 0.08);
  --blog-text: #f5f7fa;
  --blog-text-soft: rgba(229, 231, 235, 0.72);
  --blog-line: rgba(255, 255, 255, 0.08);
  --blog-line-strong: rgba(255, 255, 255, 0.14);
  --blog-primary: #9ee22e;
  --blog-primary-dark: #b8ee58;
  --blog-accent: #9ee22e;
  --blog-accent-dark: #8dcb28;
  --blog-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  --blog-radius-xl: 20px;
  --blog-radius-lg: 16px;
  --blog-radius-md: 12px;
  --blog-radius-sm: 10px;
  --blog-max-width: 1240px;
  --blog-reading-width: 860px;
  --blog-sidebar-width: 272px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(158, 226, 46, 0.08), transparent 20%),
    radial-gradient(circle at right 10%, rgba(158, 226, 46, 0.08), transparent 18%),
    linear-gradient(180deg, #141517 0%, #101014 100%);
  color: var(--blog-text);
  font-family: "SF Pro Text", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blog-primary);
  text-decoration: none;
}

a:hover {
  color: var(--blog-primary-dark);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blog-accent);
  color: #101014;
  display: none;
}

.skip-link:focus {
  display: inline-flex;
  top: 16px;
}

.blog-shell {
  min-height: 100vh;
}

.blog-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.blog-reading-progress[hidden] {
  display: none;
}

.blog-reading-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #9ee22e 0%, #c4f06d 100%);
}

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

.blog-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 16px;
  background: transparent;
}

.blog-topbar-frame {
  border-radius: 360px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 20, 0.98);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 72px;
  padding: 14px 14px 14px 20px;
}

@supports (backdrop-filter: blur(30px)) {
  .blog-topbar-frame {
    background: rgba(16, 16, 20, 0.6);
    backdrop-filter: blur(30px);
  }
}

.blog-topbar-main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.blog-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-family: "Rubik", "SF Pro Text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.blog-brand-icon {
  width: 30px;
  height: 30px;
}

.blog-brand-text {
  letter-spacing: -0.02em;
}

.blog-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 12px;
}

.blog-nav a,
.blog-nav-link,
.blog-nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding: 4px 15px;
}

.blog-nav-link,
.blog-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.blog-nav a:hover,
.blog-nav a:focus-visible,
.blog-nav a[aria-current="page"],
.blog-nav-link:hover,
.blog-nav-link:focus-visible,
.blog-nav-link[aria-current="page"],
.blog-nav-dropdown:hover .blog-nav-dropdown-trigger,
.blog-nav-dropdown:focus-within .blog-nav-dropdown-trigger {
  color: var(--blog-accent);
}

.blog-nav-cta {
  margin-left: 4px;
}

.blog-mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
}

.blog-mobile-nav-toggle::before,
.blog-mobile-nav-toggle::after,
.blog-mobile-nav-toggle span {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
}

.blog-mobile-nav-toggle::before {
  top: 0;
}

.blog-mobile-nav-toggle::after {
  bottom: 0;
}

.blog-mobile-nav-toggle span {
  top: 9px;
}

.blog-mobile-nav-toggle.is-active::before {
  top: 9px;
  transform: rotate(45deg);
}

.blog-mobile-nav-toggle.is-active::after {
  bottom: 9px;
  transform: rotate(-45deg);
}

.blog-mobile-nav-toggle.is-active span {
  opacity: 0;
}

.blog-mobile-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.blog-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: min(380px, calc(100vw - 24px));
  padding: 20px;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  background: #101014;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

@supports (backdrop-filter: blur(30px)) {
  .blog-mobile-drawer {
    background: #101014;
    backdrop-filter: none;
  }
}

.blog-mobile-drawer.is-open {
  transform: translateX(0);
}

.blog-mobile-drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.blog-mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
}

.blog-mobile-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.blog-mobile-drawer-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 4px 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: normal;
  text-transform: none;
}

.blog-mobile-drawer-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding-left: 20px;
  margin-top: 8px;
  padding-block: 8px;
}

.blog-mobile-drawer-link,
.blog-mobile-drawer-cta {
  width: 100%;
}

.blog-mobile-drawer-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 4px 15px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.blog-mobile-drawer-link:hover,
.blog-mobile-drawer-link:focus-visible,
.blog-mobile-drawer-link[aria-current="page"] {
  color: var(--blog-accent);
  background: transparent;
}

.blog-mobile-drawer-cta {
  justify-content: center;
  max-width: fit-content;
}

.header__drawer a,
.header__drawer a:visited,
.header__drawer .header__link,
.header__drawer .header__products-toggle-btn,
.header__drawer .header__products-submenu-link {
  color: #ffffff !important;
}

.header__drawer .header__link:hover,
.header__drawer .header__link:focus-visible,
.header__drawer .header__link[aria-current="page"],
.header__drawer .header__products-toggle-btn:hover,
.header__drawer .header__products-toggle-btn:focus-visible,
.header__drawer .header__products-submenu-link:hover,
.header__drawer .header__products-submenu-link:focus-visible {
  color: var(--blog-accent) !important;
}

.header__drawer .btn,
.header__drawer .btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  background:
    radial-gradient(56.63% 56.63% at 29.17% 25.83%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%),
    #9ee22e !important;
  color: #101014 !important;
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 22px;
  text-decoration: none !important;
}

.header__drawer .btn:hover,
.header__drawer .btn:focus-visible {
  color: #101014 !important;
  opacity: 0.85;
}

.blog-scroll-locked {
  overflow: hidden;
  touch-action: none;
}

.blog-nav .blog-cta,
.blog-nav .blog-cta:hover,
.blog-nav .blog-cta:focus-visible {
  color: #101014 !important;
}

.blog-nav-dropdown {
  position: relative;
}

.blog-nav-dropdown-trigger {
  gap: 8px;
}

.blog-nav-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transform: rotate(180deg);
  transition: transform 0.18s ease;
}

.blog-nav-dropdown:hover .blog-nav-dropdown-icon,
.blog-nav-dropdown:focus-within .blog-nav-dropdown-icon {
  transform: rotate(0deg);
}

.blog-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: #28282e;
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.2);
  z-index: 80;
}

.blog-nav-dropdown:hover .blog-nav-dropdown-menu,
.blog-nav-dropdown:focus-within .blog-nav-dropdown-menu {
  display: flex;
}

.blog-nav-dropdown-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.blog-nav-dropdown-item:hover,
.blog-nav-dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.blog-nav-dropdown-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-main {
  padding: 34px 0 0;
}

.blog-panel,
.blog-hero,
.blog-featured,
.blog-grid,
.blog-category-section,
.blog-related,
.blog-article-hero,
.blog-article-card,
.blog-sidebar-card,
.blog-cta-card,
.blog-footer {
  background: linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98));
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-lg);
  box-shadow: var(--blog-shadow);
}

.blog-actions,
.blog-chip-row,
.blog-card-actions,
.blog-footer-links,
.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-cta,
.blog-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  transition: all 0.3s ease;
}

.blog-cta {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: radial-gradient(56.63% 56.63% at 29.17% 25.83%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #9ee22e;
  color: #101014;
}

.blog-cta:hover {
  opacity: 0.8;
}

.blog-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #28282e;
  color: var(--blog-text);
}

.blog-cta-secondary:hover {
  border-color: rgba(158, 226, 46, 0.24);
  background: #32323a;
  color: var(--blog-accent);
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(229, 231, 235, 0.74);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(158, 226, 46, 0.08);
  color: var(--blog-accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(158, 226, 46, 0.1);
}

.blog-title,
.blog-article-title {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--blog-text);
  font-family: "Rubik", "SF Pro Text", sans-serif;
  font-weight: 600;
}

.blog-title {
  max-width: 11ch;
  font-size: clamp(2.6rem, 4.8vw, 4.25rem);
  text-wrap: balance;
}

.blog-article-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.blog-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--blog-text-soft);
  font-size: 1.1rem;
}

.blog-meta {
  color: var(--blog-text-soft);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.blog-section-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--blog-text);
  font-family: "Rubik", "SF Pro Text", sans-serif;
  font-weight: 600;
}

.blog-hub-shell,
.blog-hub-main,
.blog-sidebar-stack,
.blog-article-main,
.blog-article-content {
  display: grid;
  gap: 34px;
}

.blog-featured-section,
.blog-article-layout {
  display: grid;
  gap: 22px;
}

.blog-section-header,
.blog-toolbar,
.blog-search {
  display: flex;
  align-items: center;
}

.blog-section-header {
  justify-content: space-between;
  gap: 20px;
}

.blog-section-header-stack {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.blog-section-intro,
.blog-section-header-stack > div {
  display: grid;
  gap: 8px;
}

.blog-toolbar {
  width: 100%;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-hero {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 100%;
  padding: 34px 36px;
  background:
    radial-gradient(circle at top left, rgba(158, 226, 46, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98)),
    var(--blog-panel);
  overflow: hidden;
}

.blog-hub-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: center;
  gap: 28px;
}

.blog-hub-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.blog-hub-hero-visual {
  position: relative;
  z-index: 1;
}

.blog-hero-compare.slider-images {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0f1015;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.blog-hero-compare .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-hero-compare .background-img .after-badge,
.blog-hero-compare .foreground-img .before-badge {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  background: rgba(23, 22, 29, 0.45);
  backdrop-filter: blur(20px);
  padding: 6px 10px;
  position: absolute;
  top: 14px;
}

.blog-hero-compare .background-img .after-badge {
  right: 14px;
}

.blog-hero-compare .foreground-img {
  overflow: hidden;
}

.blog-hero-compare .foreground-img .before-badge {
  left: 14px;
}

.blog-hero-compare .slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  outline: none;
  margin: 0;
  z-index: 4;
}

.blog-hero-compare .slider::-webkit-slider-thumb {
  appearance: none;
  width: 78px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}

.blog-hero-compare .slider::-moz-range-thumb {
  width: 78px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: ew-resize;
}

.blog-hero-compare .slider-line {
  width: 2px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.43;
  background: #d9d9d9;
  z-index: 3;
}

.blog-hero-compare .slider-button {
  width: 44px;
  height: 44px;
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #9ee22e;
  z-index: 5;
}

.blog-hero-compare .slider-button::before,
.blog-hero-compare .slider-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #101014;
  border-right: 2px solid #101014;
}

.blog-hero-compare .slider-button::before {
  left: 13px;
  transform: translateY(-50%) rotate(-135deg);
}

.blog-hero-compare .slider-button::after {
  right: 13px;
  transform: translateY(-50%) rotate(45deg);
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.65), transparent 72%);
  pointer-events: none;
}

.blog-featured-section {
  margin-top: 6px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-featured-body,
.blog-card-body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.blog-featured-body {
  grid-template-rows: auto auto;
  align-content: stretch;
  padding: 34px 34px 30px;
}

.blog-featured-copy,
.blog-card-copy {
  display: grid;
}

.blog-featured-copy {
  gap: 14px;
}

.blog-card-copy {
  gap: 10px;
}

.blog-featured-footer {
  display: grid;
  gap: 18px;
  align-content: end;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-featured h2,
.blog-card h2,
.blog-card h3,
.blog-related h2,
.blog-category-section h2,
.blog-sidebar-card h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-family: "Rubik", "SF Pro Text", sans-serif;
  font-weight: 600;
}

.blog-featured p,
.blog-card p,
.blog-category-section p,
.blog-sidebar-card p,
.blog-footer p,
.blog-cta-card p {
  margin: 0;
  color: var(--blog-text-soft);
}

.blog-featured-copy p {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(229, 231, 235, 0.8);
}

.blog-featured h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  line-height: 1.1;
}

.blog-featured-media,
.blog-card-media,
.blog-article-cover {
  display: block;
  overflow: hidden;
  background: #20242a;
}

.blog-featured-media {
  aspect-ratio: 16 / 11;
  min-height: 0;
  border-right: 1px solid var(--blog-line);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--blog-line);
}

.blog-featured-media img,
.blog-card-media img,
.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid,
.blog-category-section,
.blog-related,
.blog-article-card,
.blog-topic-strip,
.blog-footer {
  padding: 28px;
}

.blog-grid {
  display: grid;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--blog-radius-md);
  background: linear-gradient(180deg, rgba(27, 26, 35, 0.98) 0%, rgba(16, 16, 20, 0.98) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.blog-card .blog-meta {
  font-size: 12px;
  color: rgba(229, 231, 235, 0.5);
}

.blog-card-body {
  grid-template-rows: 1fr auto;
  padding: 24px 24px 22px;
  gap: 0;
}

.blog-card h3 a,
.blog-featured h2,
.blog-related h2 {
  color: var(--blog-text);
}

.blog-card h3 a {
  transition: color 0.18s ease;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible,
.blog-card h3 a:active {
  color: var(--blog-accent);
}

.blog-card p {
  font-size: 0.99rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.76);
}

.blog-card h3 {
  font-size: 1.24rem;
}

.blog-featured .blog-meta {
  gap: 10px;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.46);
}

.blog-featured .blog-meta span {
  opacity: 0.9;
}

.blog-card-actions {
  align-items: center;
}

.blog-card-body .blog-card-actions {
  margin-top: auto;
  padding-top: 14px;
}

.blog-card .blog-card-actions {
  display: none;
}

.blog-grid > .blog-section-header,
.blog-featured-section > .blog-section-header {
  margin-bottom: 0;
}

.blog-card-lead {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  grid-template-rows: none;
}

.blog-card-lead .blog-card-media {
  height: 100%;
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--blog-line);
}

.blog-card-lead .blog-card-body {
  padding: 34px 34px 30px;
}

.blog-card-lead .blog-card-copy {
  gap: 14px;
}

.blog-card-lead .blog-meta {
  margin-bottom: 2px;
}

.blog-card-lead h3 {
  font-size: clamp(1.72rem, 2vw, 2rem);
  line-height: 1.12;
}

.blog-card-lead p {
  font-size: 1.06rem;
}

.blog-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.blog-article-layout {
  grid-template-columns: minmax(0, var(--blog-sidebar-width)) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.blog-article-layout--single {
  grid-template-columns: 1fr;
}

.blog-article-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.blog-article-sidebar {
  min-width: 0;
}

.blog-sidebar-stack {
  position: sticky;
  top: 88px;
  gap: 10px;
}

.blog-sidebar-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98));
}

.blog-sidebar-card h2 {
  font-size: 1.08rem;
}

.blog-sidebar-card--toc {
  gap: 10px;
  max-width: 252px;
  justify-self: start;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(23, 22, 29, 0.92), rgba(16, 16, 20, 0.92));
  border-color: rgba(255, 255, 255, 0.09);
}

.blog-sidebar-card--toc h2 {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.9);
}

.blog-toc {
  display: grid;
  gap: 4px;
}

.blog-toc-link {
  position: relative;
  display: block;
  color: rgba(229, 231, 235, 0.72);
  font-size: 0.88rem;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.blog-toc-link:hover,
.blog-toc-link:focus-visible {
  color: var(--blog-accent);
  background: rgba(158, 226, 46, 0.08);
  border-left-color: rgba(158, 226, 46, 0.52);
}

.blog-toc-level-2 {
  padding-left: 10px;
}

.blog-toc-level-3 {
  padding-left: 22px;
  font-size: 0.84rem;
  color: rgba(229, 231, 235, 0.64);
}

.blog-toc-level-3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(229, 231, 235, 0.36);
  transform: translateY(-50%);
}

.blog-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98)),
    var(--blog-panel);
}

.blog-article-header {
  display: grid;
  gap: 16px;
}

.blog-breadcrumbs {
  margin: 0;
  color: var(--blog-text-soft);
  font-size: 0.92rem;
}

.blog-breadcrumbs a {
  color: inherit;
}

.blog-reading {
  width: min(100%, var(--blog-reading-width));
}

.blog-article-meta {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(229, 231, 235, 0.66);
  gap: 10px 14px;
}

.blog-article-cover-wrap {
  display: grid;
  align-items: stretch;
}

.blog-article-cover {
  aspect-ratio: 16 / 13;
  border-radius: var(--blog-radius-md);
  border: 1px solid var(--blog-line);
}

.blog-article-content {
  width: min(100%, var(--blog-reading-width));
  display: grid;
  gap: 22px;
}

.blog-article-content > * {
  margin: 0;
}

.blog-related {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-related-header {
  margin: 0;
}

.blog-discovery-card,
.blog-signal-card,
.blog-signal-grid {
  margin: 0;
}

.blog-signal-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--blog-radius-md);
  background: linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98));
}

.blog-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-proof-card {
  background: linear-gradient(180deg, rgba(38, 46, 25, 0.98), rgba(23, 28, 17, 0.98));
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--blog-text);
  font-family: "Rubik", "SF Pro Text", sans-serif;
  font-weight: 600;
}

.blog-article-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-top: 10px;
}

.blog-article-content h3 {
  font-size: 1.28rem;
  margin-top: 8px;
}

.blog-article-content p,
.blog-article-content li,
.blog-article-content blockquote {
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(229, 231, 235, 0.82);
}

.blog-article-content ul,
.blog-article-content ol,
.blog-signal-card ul,
.blog-signal-card ol {
  margin: 0;
  padding-left: 22px;
}

.blog-article-content ul li,
.blog-signal-card ul li {
  list-style-type: disc;
}

.blog-article-content ol li,
.blog-signal-card ol li {
  list-style-type: decimal;
}

.blog-article-content code {
  border-radius: 8px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.94em;
}

.blog-article-content pre {
  overflow-x: auto;
  margin: 0;
  border-radius: var(--blog-radius-md);
  padding: 18px;
  background: #101014;
  color: #eef4fb;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-content blockquote {
  margin: 0;
  border-left: 4px solid var(--blog-accent);
  padding: 8px 0 8px 16px;
  color: var(--blog-text);
  background: linear-gradient(90deg, rgba(158, 226, 46, 0.08), rgba(158, 226, 46, 0.01));
}

.blog-article-content figure {
  margin: 2px 0;
}

.blog-article-content iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-article-content figcaption {
  margin-top: 10px;
  color: var(--blog-text-soft);
  font-size: 0.92rem;
}

.blog-link-preview {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 18px;
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-md);
  background: linear-gradient(180deg, rgba(23, 22, 29, 0.98), rgba(16, 16, 20, 0.98));
  color: var(--blog-text);
}

.blog-link-preview strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.blog-link-preview span:last-child {
  color: var(--blog-accent);
  font-weight: 700;
}

.blog-link-preview-eyebrow {
  color: var(--blog-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-video-card {
  display: grid;
  gap: 14px;
  margin: 4px 0;
}

.blog-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--blog-radius-md);
  border: 1px solid var(--blog-line);
  background: #171a18;
}

.blog-cta-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--blog-radius-md);
  background:
    radial-gradient(circle at top left, rgba(158, 226, 46, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(23, 28, 17, 0.98), rgba(16, 20, 14, 0.98));
}

.blog-footer {
  margin-top: 28px;
  background: #101014;
  border-color: rgba(255, 255, 255, 0.04);
  color: #d3d3d3;
  box-shadow: none;
}

.blog-footer-top {
  padding: 8px 0 14px;
}

.blog-footer-body,
.blog-footer-top-actions,
.blog-footer-links,
.blog-store-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog-footer-body {
  justify-content: space-between;
  gap: 16px 28px;
}

.blog-footer-top-actions {
  justify-content: center;
  gap: 12px 16px;
}

.blog-footer-top p,
.blog-footer-bottom a {
  color: #d3d3d3;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.blog-footer-top p {
  margin: 0;
}

.blog-store-badges {
  gap: 12px;
}

.blog-store-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-store-badges img {
  height: 40px;
  width: auto;
}

.blog-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-footer-links {
  justify-content: center;
  gap: 0;
}

.blog-footer-links a {
  display: block;
  padding: 15px;
  margin-inline-start: 6px;
}

.blog-footer-links a:hover {
  color: #d3d3d3;
  opacity: 0.6;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(53, 103, 214, 0.22);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .blog-hub-hero {
    grid-template-columns: 1fr;
  }

  .blog-hub-hero-visual {
    order: -1;
  }

  .blog-hero-compare.slider-images {
    min-height: 300px;
  }

  .blog-article-hero,
  .blog-card-lead,
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-lead {
    grid-column: auto;
  }

  .blog-card-lead .blog-card-media,
  .blog-featured-media {
    border-right: 0;
    border-bottom: 1px solid var(--blog-line);
  }

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

@media (max-width: 1200px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-sidebar-stack {
    position: static;
  }

  .blog-topbar-frame {
    align-items: center;
    flex-direction: row;
    border-radius: 24px;
    padding: 14px 16px;
  }

  .blog-nav {
    display: none;
  }

  .blog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-card-grid,
  .blog-card-grid-compact,
  .blog-signal-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-main {
    gap: 20px;
  }

  .blog-article-hero {
    gap: 22px;
  }

  .blog-sidebar-card--toc {
    max-width: 100%;
  }

  .blog-mobile-nav-toggle {
    display: inline-flex;
  }

  .blog-mobile-drawer-backdrop {
    display: block;
  }

  .blog-mobile-drawer {
    display: flex;
    width: max(320px, 84vw);
    padding: 32px 24px;
  }
}

@media (max-width: 720px) {
  .blog-container {
    width: min(calc(100% - 20px), var(--blog-max-width));
  }

  .blog-main {
    padding-top: 18px;
  }

  .blog-mobile-drawer {
    width: min(100vw, 360px);
    padding: 18px 16px 24px;
  }

  .blog-grid,
  .blog-category-section,
  .blog-related,
  .blog-article-card,
  .blog-topic-strip,
  .blog-footer,
  .blog-sidebar-card {
    padding: 20px;
  }

  .blog-hero,
  .blog-article-hero {
    padding: 22px;
  }

  .blog-hub-hero {
    gap: 18px;
  }

  .blog-hero-compare.slider-images {
    min-height: 250px;
  }

  .blog-featured-body,
  .blog-card-body {
    padding: 20px;
  }

  .blog-article-header {
    gap: 12px;
  }

  .blog-article-meta {
    padding-top: 12px;
    font-size: 12px;
  }

  .blog-article-content {
    gap: 18px;
  }

  .blog-cta-card {
    padding: 22px;
  }

  .blog-footer-body {
    justify-content: center;
    text-align: center;
  }

  .blog-footer-links {
    justify-content: center;
  }

  .blog-title {
    max-width: 11ch;
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .blog-article-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .blog-lead,
  .blog-article-content p,
  .blog-article-content li,
  .blog-article-content blockquote {
    font-size: 1rem;
  }
}
