:root {
  --bg: #ffffff;
  --surface: #f7f9fb;
  --ink: #161d26;
  --muted: #5d6978;
  --line: #dfe5ea;
  --line-soft: #edf1f4;
  --teal: #087780;
  --teal-2: #2aa39d;
  --blue: #2478d7;
  --green: #45b36b;
  --orange: #ff9d22;
  --dark: #1e2935;
  --brand-accent: var(--teal);
  --brand-ink: var(--ink);
  --brand-font: "JetBrains Mono", "Fira Code", Consolas, monospace;
  --shadow: 0 28px 70px rgba(23, 35, 46, 0.18);
  --shadow-soft: 0 16px 40px rgba(23, 35, 46, 0.1);
  --radius: 8px;
  --site-width: 1800px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(calc(-100% - 24px));
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.site-header__inner,
main {
  width: min(calc(100% - 104px), var(--site-width));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: 260px 1fr 210px;
  gap: 32px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-ink);
  font-family: var(--brand-font);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand__logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand__mark {
  color: var(--brand-accent);
  font-family: var(--brand-font);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.18em;
}

.brand__name {
  color: var(--brand-ink);
  font-family: var(--brand-font);
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 68px);
  color: #1d2732;
  font-size: 1.05rem;
  font-weight: 500;
}

.site-nav a {
  padding: 12px 0;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.header-cta {
  color: #fff;
  background: var(--teal);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(48px, 5vw, 96px);
  align-items: center;
  padding: 50px 0 20px;
}

.hero__copy {
  min-width: 0;
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow--orange {
  margin-bottom: 20px;
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 3.25vw, 4.18rem);
  line-height: 1.12;
  letter-spacing: -0.065em;
  overflow-wrap: break-word;
}

.hero__lead {
  max-width: 730px;
  margin-bottom: 34px;
  color: #26313f;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
}

.button {
  min-width: 238px;
  padding: 0 30px;
  border: 2px solid var(--ink);
}

.button--primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button--secondary {
  background: #fff;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.capabilities article {
  min-height: 94px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.capabilities article + article {
  padding-left: 38px;
}

.capabilities article:last-child {
  border-right: 0;
}

.capability-icon {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 2rem;
  font-weight: 700;
}

.capabilities h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.capabilities p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero__mockup {
  position: relative;
  z-index: 1;
  min-height: 690px;
  align-self: center;
  margin-top: 0;
}

.dashboard-card,
.process-card,
.integration-card,
.pipeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.dashboard-card {
  position: absolute;
  top: 0;
  right: 62px;
  width: min(820px, 82%);
  height: 388px;
  display: grid;
  grid-template-columns: 118px 1fr;
  overflow: hidden;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px 14px;
  color: #c9d3df;
  background: var(--dark);
  font-size: 0.82rem;
}

.mini-logo {
  margin-bottom: 4px;
  color: var(--brand-accent);
  font-family: var(--brand-font);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.18em;
}

.dashboard-sidebar span {
  padding: 8px 10px;
}

.dashboard-sidebar .nav-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 5px;
}

.dashboard-main {
  padding: 22px;
  background: #f8fafc;
}

.dashboard-top,
.dashboard-controls,
.metric-grid,
.chart-grid {
  display: flex;
  align-items: center;
}

.dashboard-top {
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.dashboard-controls {
  gap: 8px;
  color: #536170;
  font-size: 0.68rem;
}

.dashboard-controls span {
  padding: 7px 9px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.metric-grid article,
.line-chart,
.donut-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.metric-grid article {
  padding: 14px;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.metric-grid strong {
  display: block;
  margin: 7px 0 2px;
  font-size: 1.2rem;
}

.metric-grid em {
  color: var(--green);
  font-style: normal;
  font-size: 0.72rem;
}

.spark {
  display: block;
  height: 34px;
  margin-top: 8px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.spark-blue {
  background-image: linear-gradient(150deg, transparent 48%, rgba(36, 120, 215, 0.18) 49%), linear-gradient(140deg, transparent 45%, var(--blue) 46%, var(--blue) 49%, transparent 50%);
}

.spark-teal {
  background-image: linear-gradient(150deg, transparent 48%, rgba(42, 163, 157, 0.16) 49%), linear-gradient(140deg, transparent 45%, var(--teal-2) 46%, var(--teal-2) 49%, transparent 50%);
}

.spark-green {
  background-image: linear-gradient(150deg, transparent 48%, rgba(69, 179, 107, 0.16) 49%), linear-gradient(140deg, transparent 45%, var(--green) 46%, var(--green) 49%, transparent 50%);
}

.chart-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 14px;
}

.line-chart,
.donut-card {
  min-height: 156px;
  padding: 14px;
  font-size: 0.78rem;
}

.chart-lines {
  height: 112px;
  margin-top: 12px;
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(120deg, transparent 42%, rgba(42, 163, 157, 0.2) 43%, rgba(42, 163, 157, 0.2) 48%, transparent 49%),
    linear-gradient(145deg, transparent 43%, var(--blue) 44%, var(--blue) 46%, transparent 47%),
    linear-gradient(130deg, transparent 48%, var(--teal-2) 49%, var(--teal-2) 51%, transparent 52%);
}

.donut-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  align-items: center;
}

.donut-card strong {
  grid-column: 1 / -1;
}

.donut {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, #b7c4ce 42% 70%, var(--teal-2) 70% 88%, #d7e0e7 88% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: #fff;
  border-radius: inherit;
}

.donut-card ul,
.integration-card ul,
.pipeline-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.donut-card li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.process-card {
  position: absolute;
  left: 0;
  bottom: 88px;
  width: 560px;
  padding: 22px 26px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.process-flow span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.66rem;
}

.integration-card {
  position: absolute;
  right: 260px;
  bottom: 36px;
  width: 214px;
  padding: 18px;
  color: #fff;
  background: var(--dark);
}

.integration-card strong,
.pipeline-card strong,
.process-card strong {
  display: block;
}

.integration-card ul {
  margin-top: 14px;
}

.integration-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.integration-card em {
  color: #6fdd84;
  font-style: normal;
}

.pipeline-card {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 186px;
  padding: 20px;
}

.pipeline-card ol {
  margin-top: 18px;
}

.pipeline-card li {
  position: relative;
  padding: 0 0 18px 28px;
  color: #4c5967;
  font-size: 0.76rem;
}

.pipeline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  border: 3px solid #b9c3cc;
  background: #fff;
  border-radius: 50%;
}

.pipeline-card li.done::before {
  border-color: var(--teal);
  background: var(--teal);
}

.pipeline-card li.active::before {
  border-color: var(--teal);
}

.projects-preview {
  margin-inline: calc(50% - 50vw);
  padding: 40px 24px 54px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.projects-preview h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.projects-preview p:not(.eyebrow) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.18rem;
}

.projects-preview a {
  color: var(--teal);
  font-weight: 600;
}

.system-showcase {
  margin-inline: calc(50% - 50vw);
  padding: 86px max(52px, calc((100vw - var(--site-width)) / 2 + 52px)) 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  border-top: 1px solid var(--line);
}

.system-showcase__copy {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.system-showcase__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.system-showcase__copy p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.18rem;
}

.system-showcase img {
  display: block;
  width: min(1380px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 26px 64px rgba(23, 35, 46, 0.12));
}

.section {
  padding: 90px 0;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section__heading h2 {
  margin-bottom: 0;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid h3 {
  margin-bottom: 12px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.blog-preview {
  margin-inline: calc(50% - 50vw);
  padding: 86px max(52px, calc((100vw - var(--site-width)) / 2 + 52px)) 96px;
  border-top: 1px solid var(--line);
  background: #f8fafb;
}

.blog-preview .section__heading {
  max-width: 900px;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.blog-preview article,
.post-card,
.blog-sidebar__block,
.tag-index a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-preview article {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
}

.blog-preview article h3 {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.blog-preview__icon,
.post-card__icon {
  display: inline-grid;
  width: 22px;
  min-width: 22px;
  height: 22px;
  place-items: center;
  margin-top: 0.1em;
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1;
}

.blog-preview__icon svg,
.post-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-preview__icon svg path:first-child:last-child,
.post-card__icon svg path:first-child:last-child {
  fill: currentColor;
  stroke: none;
}

.blog-preview__meta {
  margin-top: auto;
  padding-top: 20px;
  text-align: left;
  order: 4;
}

.blog-preview img,
.post-card__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.blog-preview img {
  margin-bottom: 22px;
}

.blog-preview time,
.post-card time,
.article-header time,
.archive-list time {
  display: block;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-preview h3 {
  margin: 14px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-preview p {
  margin: 0;
  color: var(--muted);
}

.blog-preview__link {
  color: var(--teal);
  font-weight: 700;
}

.blog-hero {
  padding: 86px 0 54px;
  max-width: 980px;
}

.blog-hero--compact {
  padding-bottom: 28px;
}

.blog-hero h1 {
  max-width: 900px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.2rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding-bottom: 96px;
}

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

.post-card {
  padding: 28px;
}

.post-card__media {
  margin-bottom: 22px;
}

.post-card--featured {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(8, 119, 128, 0.08), transparent 42%),
    #fff;
}

.post-card h2 {
  max-width: 820px;
  margin: 12px 0 12px;
  font-size: 1.75rem;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.post-card--featured h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.post-card p {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.tag-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.45em;
  line-height: 1.8;
}

.tag-row a,
.tag-cloud a {
  display: inline-flex;
  align-items: baseline;
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.tag-row a:not(:last-child)::after,
.tag-cloud a:not(:last-child)::after,
.tag-index--cloud a:not(:last-child)::after {
  content: ", ";
  color: var(--muted);
  font-weight: 500;
}

.article-toc {
  display: grid;
  gap: 8px;
}

.article-toc__link {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.article-toc__link:hover,
.heading-anchor:hover,
.hash-tag:hover {
  color: var(--teal);
}

.heading-anchor {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.9em;
  text-decoration: none;
  opacity: 0;
}

.article-body h2:hover .heading-anchor,
.heading-anchor:focus {
  opacity: 1;
}

.hash-tag {
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

.sidebar-link--tags-title {
  margin-bottom: 12px;
  border-top: 0;
  font-weight: 800;
}

.blog-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.blog-sidebar__block {
  padding: 22px;
}

.blog-sidebar h2 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sidebar-link {
  display: block;
  padding: 12px 0;
  color: var(--teal);
  font-weight: 700;
  border-top: 1px solid var(--line-soft);
}

.blog-sidebar .sidebar-link {
  padding: 0;
  border-top: 0;
}

.archive-list,
.tag-index {
  display: grid;
  gap: 12px;
  padding-bottom: 96px;
}

.archive-list a {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.archive-list span {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.tag-index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag-index a {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.tag-index strong {
  font-size: 1.3rem;
}

.tag-index span {
  color: var(--muted);
}

.tag-index--cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.55em;
  grid-template-columns: none;
  line-height: 1.9;
  padding-bottom: 0;
}

.tag-index--cloud a {
  display: inline-flex;
  align-items: baseline;
  width: auto;
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.article-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 0 96px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 700;
}

.article-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 880px;
  margin: 16px 0 20px;
}

.article-header p {
  max-width: 780px;
  color: #26313f;
  font-size: 1.2rem;
}

.article-body {
  padding-top: 34px;
  color: #26313f;
  font-size: 1.13rem;
  line-height: 1.72;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.article-footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-footer a {
  color: var(--teal);
  font-weight: 800;
}

@media (min-width: 2100px) {
  .site-header__inner,
  main {
    width: min(calc(100% - 144px), var(--site-width));
  }

  .hero {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 1280px) {
  .site-header__inner {
    grid-template-columns: 220px 1fr 190px;
  }

  .site-nav {
    gap: 24px;
  }

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

  .blog-sidebar {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__mockup {
    min-height: 660px;
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  main {
    width: min(calc(100% - 40px), var(--site-width));
  }

  .site-header__inner {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand__logo {
    height: 40px;
  }

  .brand__mark {
    font-size: 1.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    z-index: 10;
    display: grid;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav[aria-hidden="true"] {
    display: none;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding: 44px 0 32px;
    overflow: hidden;
  }

  .hero__copy {
    width: 100%;
    max-width: 350px;
  }

  h1 {
    width: 100%;
    max-width: 330px;
    font-size: 1.74rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 0.96rem;
    overflow-wrap: break-word;
  }

  .hero__actions,
  .capabilities,
  .service-grid,
  .blog-preview__grid,
  .tag-index {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
  }

  .button {
    width: 100%;
  }

  .capabilities article,
  .capabilities article + article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__mockup {
    min-height: auto;
    display: grid;
    gap: 14px;
    margin-top: 8px;
  }

  .dashboard-card,
  .process-card,
  .integration-card,
  .pipeline-card {
    position: static;
    width: 100%;
  }

  .dashboard-card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar,
  .dashboard-controls,
  .integration-card,
  .pipeline-card {
    display: none;
  }

  .metric-grid,
  .chart-grid,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .system-showcase {
    padding: 56px 20px 64px;
  }

  .system-showcase__copy {
    text-align: left;
  }

  .system-showcase__copy h2 {
    font-size: 2rem;
  }

  .system-showcase img {
    width: 145%;
    max-width: none;
    margin-left: -24%;
  }

  .blog-preview {
    padding: 56px 20px 64px;
  }

  .blog-preview article {
    min-height: auto;
  }

  .blog-hero {
    padding: 52px 0 30px;
  }

  .blog-hero h1,
  .article-header h1 {
    max-width: none;
    font-size: 2rem;
  }

  .blog-hero p:not(.eyebrow),
  .article-header p,
  .article-body {
    font-size: 1rem;
  }

  .blog-layout,
  .archive-list,
  .tag-index,
  .article-page {
    padding-bottom: 62px;
  }

  .post-card,
  .blog-sidebar__block,
  .tag-index a {
    padding: 20px;
  }

  .post-card--featured {
    min-height: auto;
  }

  .post-card h2,
  .post-card--featured h2 {
    font-size: 1.45rem;
  }

  .archive-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .archive-list span {
    font-size: 1.12rem;
  }
}

/* Dark editorial blog layer */
.blog-body {
  --blog-bg: #0d1016;
  --blog-panel: #171c25;
  --blog-panel-2: #1d232e;
  --blog-ink: #eef4ff;
  --blog-muted: #a9b4c4;
  --blog-line: #2a3342;
  --blog-accent: #58d6bd;
  --blog-accent-2: #c7ff6b;
  --brand-accent: var(--blog-accent);
  --brand-ink: var(--blog-ink);
  --blog-page-gutter: clamp(24px, 5vw, 96px);
  --blog-content-width: calc(100vw - (var(--blog-page-gutter) * 2));
  --blog-readable: 100%;
  color: var(--blog-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 214, 189, 0.08), transparent 32rem),
    linear-gradient(180deg, #0d1016 0%, #10141c 100%);
  font-family: "Cascadia Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.blog-body .site-header {
  border-bottom: 1px solid var(--blog-line);
  background: rgba(13, 16, 22, 0.92);
}

.blog-body .site-header__inner,
.blog-body main {
  width: var(--blog-content-width);
  max-width: none;
  margin-inline: auto;
}

.blog-body .site-header__inner {
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.2fr) 156px;
  min-height: 72px;
}

.blog-body .brand {
  color: var(--blog-ink);
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.blog-body .brand__mark,
.blog-body .site-nav a,
.blog-body .header-cta,
.blog-body .eyebrow,
.blog-body .back-link,
.blog-body .article-footer a {
  color: var(--blog-accent);
}

.blog-body .site-nav {
  gap: 18px;
  color: var(--blog-ink);
  font-size: 0.95rem;
  justify-content: flex-end;
}

.blog-body .site-nav a {
  border-bottom: 1px solid transparent;
}

.blog-body .site-nav a:hover,
.blog-body .site-nav a[aria-current="page"] {
  border-color: var(--blog-accent);
}

.blog-body .header-cta {
  min-height: 42px;
  color: #07100e;
  background: var(--blog-accent);
  border: 0;
  font-size: 0.86rem;
}

.blog-body .blog-hero {
  max-width: none;
  padding: 72px 0 44px;
}

.blog-body .blog-hero > .eyebrow {
  max-width: none;
  margin-bottom: 22px;
  color: var(--blog-accent);
  font-size: clamp(1.1rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  text-transform: none;
  letter-spacing: -0.02em;
}

.blog-body .blog-hero h1,
.blog-body .article-header h1 {
  color: var(--blog-ink);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.blog-body .blog-hero p:not(.eyebrow),
.blog-body .article-header p,
.blog-body .post-card p,
.blog-body .article-body,
.blog-body .tag-index span {
  color: var(--blog-muted);
}

.blog-body .blog-hero p:not(.eyebrow),
.blog-body .article-header p,
.blog-body .article-header h1,
.blog-body .post-card p,
.blog-body .resource-section__head p,
.blog-body .resource-card p {
  max-width: none;
}

.blog-body .blog-layout {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(210px, 16vw, 280px);
  gap: clamp(24px, 2.2vw, 44px);
  padding-bottom: 86px;
}

.blog-body .blog-feed {
  gap: 18px;
}

.blog-body .blog-feed--filtered {
  max-width: none;
  padding-bottom: 90px;
}

.blog-body .post-card,
.blog-body .blog-sidebar__block,
.blog-body .tag-index a {
  background: linear-gradient(180deg, var(--blog-panel) 0%, #151a22 100%);
  border: 1px solid var(--blog-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.blog-body .post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
}

.blog-body .post-card--featured {
  min-height: auto;
  align-content: initial;
  background:
    linear-gradient(135deg, rgba(88, 214, 189, 0.08), transparent 48%),
    linear-gradient(180deg, #1a202a 0%, #151a22 100%);
}

.blog-body .post-card time,
.blog-body .article-header time,
.blog-body .archive-list time {
  color: var(--blog-accent-2);
  font-size: 0.82rem;
}

.blog-body .post-card h2 {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0 8px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.blog-body .post-card__icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0.08em;
  color: var(--blog-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.blog-body .post-card__icon svg {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.blog-body .post-card--featured h2 {
  font-size: 1.65rem;
}

.blog-body .post-card a:hover,
.blog-body .archive-list a:hover span {
  color: var(--blog-accent);
}

.blog-body .tag-row a,
.blog-body .tag-cloud a,
.blog-body .tag-index--cloud a {
  color: var(--blog-accent);
  background: transparent;
  border: 0;
}

.blog-body .tag-row a:not(:last-child)::after,
.blog-body .tag-cloud a:not(:last-child)::after,
.blog-body .tag-index--cloud a:not(:last-child)::after {
  color: var(--blog-muted);
}

.blog-body .post-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.blog-body .post-card__byline {
  order: 1;
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  margin-left: 0;
  overflow: visible;
  color: var(--blog-muted);
  text-overflow: ellipsis;
}

.blog-body .post-card__byline a {
  min-width: 0;
  overflow: hidden;
  color: var(--blog-accent);
  text-overflow: ellipsis;
}

.blog-body .post-card__byline strong {
  color: var(--blog-muted);
}

.blog-body .post-card__meta .tag-row {
  order: 2;
  flex: 0 1 auto;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
}

.blog-body .post-card__meta time {
  flex: 0 0 auto;
  text-align: left;
  white-space: nowrap;
}

.blog-body .post-card__meta .tag-row a {
  max-width: min(220px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-body .blog-sidebar {
  top: 18px;
}

.blog-body .blog-sidebar h2 {
  color: var(--blog-ink);
}

.blog-body .sidebar-section-title {
  margin: 10px 0;
  color: var(--blog-ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.blog-body .sidebar-link {
  color: var(--blog-accent);
}

.blog-body .sidebar-rule {
  height: 1px;
  margin: 12px 0;
  background: rgba(42, 51, 66, 0.72);
}

.blog-body .article-page {
  width: 100%;
  max-width: none;
  padding-top: 54px;
}

.blog-body .blog-layout--article {
  padding-bottom: 0;
}

.blog-body .article-header {
  max-width: none;
  margin-bottom: 34px;
  border-bottom-color: var(--blog-line);
}

.blog-body .article-main {
  min-width: 0;
}

.blog-body .article-source {
  max-width: none;
  margin-top: 22px;
  padding: 18px 20px;
  color: var(--blog-muted);
  background: #111721;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
}

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

.blog-body .article-source a {
  color: var(--blog-accent);
  font-weight: 800;
}

.blog-body .article-source p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.blog-body .article-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 44px;
  padding-top: 18px;
  color: var(--blog-muted);
  border-top: 1px solid var(--blog-line);
}

.blog-body .article-meta__source {
  display: flex;
  align-items: baseline;
  gap: 0.65em;
  min-width: 0;
}

.blog-body .article-meta__source a {
  color: var(--blog-accent);
  font-weight: 800;
}

.blog-body .article-meta__source strong {
  color: var(--blog-muted);
}

.blog-body .article-meta__tags {
  flex: 1 1 auto;
  min-width: 0;
}

.blog-body .article-meta__tags .tag-row {
  justify-content: flex-end;
  overflow: hidden;
  text-align: right;
  white-space: nowrap;
}

.blog-body .article-body {
  max-width: none;
  font-size: 1.05rem;
}

.blog-body .article-body a:not(.heading-anchor) {
  color: #d7fff3;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: rgba(88, 214, 189, 0.72);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.blog-body .article-body a:not(.heading-anchor):hover,
.blog-body .article-body a:not(.heading-anchor):focus-visible {
  color: #061015;
  background: var(--blog-accent);
  text-decoration-color: transparent;
  outline: 0;
}

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

.blog-body .article-body h3 {
  margin: 24px 0 12px;
  color: var(--blog-ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.blog-body .article-body :not(pre) > code,
.blog-body .article-header code,
.blog-body .post-card code {
  padding: 0.12em 0.34em;
  color: #d7fff3;
  background: rgba(88, 214, 189, 0.12);
  border: 1px solid rgba(88, 214, 189, 0.24);
  border-radius: 5px;
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  font-size: 0.9em;
  white-space: nowrap;
}

.blog-body .code-block {
  position: relative;
  margin: 22px 0 30px;
  padding: 52px 18px 18px;
  overflow-x: auto;
  color: #eef4ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42px),
    #101620;
  border: 1px solid #2b3748;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.22);
  cursor: copy;
  scrollbar-color: #3b4a60 #101620;
}

.blog-body .code-block::before {
  content: attr(data-lang);
  position: absolute;
  top: 12px;
  left: 14px;
  padding: 4px 8px;
  color: #061015;
  background: var(--blog-accent);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-body .code-block__copy {
  position: absolute;
  top: 10px;
  right: 12px;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blog-accent);
  background: #111721;
  border: 1px solid var(--blog-line);
  border-radius: 6px;
  cursor: pointer;
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 900;
}

.blog-body .code-block__copy:hover,
.blog-body .code-block:focus-visible .code-block__copy,
.blog-body .code-block.is-copied .code-block__copy {
  color: #061015;
  background: var(--blog-accent);
  border-color: var(--blog-accent);
}

.blog-body .code-block:focus-visible {
  outline: 2px solid rgba(88, 214, 189, 0.8);
  outline-offset: 3px;
}

.blog-body .code-block code {
  display: block;
  min-width: max-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  font-size: 0.95rem;
  line-height: 1.68;
  white-space: pre;
  tab-size: 2;
}

.blog-body .code-token--comment {
  color: #76859a;
}

.blog-body .code-token--keyword {
  color: #58d6bd;
}

.blog-body .code-token--string {
  color: #f2d57e;
}

.blog-body .code-token--variable {
  color: #8ab4ff;
}

.blog-body .code-token--function {
  color: #c7ff6b;
}

.blog-body .code-token--operator {
  color: #ff7bbd;
}

.blog-body .article-body ul,
.blog-body .article-body ol {
  margin: 18px 0 30px;
  padding-left: 1.45rem;
  color: var(--blog-muted);
}

.blog-body .article-body li {
  margin: 0.52rem 0;
  padding-left: 0.2rem;
}

.blog-body .article-body li::marker {
  color: var(--blog-accent);
  font-weight: 900;
}

.blog-body .article-checklist {
  padding: 16px 18px 16px 2.5rem;
  background: #111721;
  border: 1px solid var(--blog-line);
  border-radius: 8px;
  list-style: none;
}

.blog-body .article-checklist li {
  position: relative;
  margin: 0;
  padding: 7px 0 7px 0.35rem;
  color: var(--blog-muted);
}

.blog-body .article-checklist li + li {
  border-top: 1px solid rgba(42, 51, 66, 0.72);
}

.blog-body .article-checklist li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: -1.05rem;
  width: 0.44rem;
  height: 0.44rem;
  background: var(--blog-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(88, 214, 189, 0.12);
}

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

.blog-body .resource-section {
  margin-top: 38px;
}

.blog-body .resource-directory {
  max-width: none;
}

.blog-body .resource-section__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.blog-body .resource-section__icon,
.blog-body .resource-logo {
  display: inline-grid;
  place-items: center;
  color: #061015;
  background: var(--blog-accent);
  border: 1px solid rgba(88, 214, 189, 0.72);
  box-shadow: 0 0 0 5px rgba(88, 214, 189, 0.08);
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-body .resource-section__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-size: 1rem;
}

.blog-body .resource-section__head h2 {
  margin: 0;
}

.blog-body .resource-section__head p {
  margin: 7px 0 0;
  color: var(--blog-muted);
  font-size: 0.98rem;
}

.blog-body .resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 16px;
  margin-top: 16px;
}

.blog-body .resource-grid--empty {
  grid-template-columns: 1fr;
}

.blog-body .resource-card {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(88, 214, 189, 0.08), transparent 34%),
    #111721;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
}

.blog-body .resource-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.blog-body .resource-card__identity {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.blog-body .resource-logo {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.blog-body .resource-logo--muted {
  color: var(--blog-accent);
  background: rgba(88, 214, 189, 0.09);
  border-color: var(--blog-line);
  box-shadow: none;
}

.blog-body .resource-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.blog-body .resource-card h3 a {
  color: var(--blog-accent);
}

.blog-body .resource-card__top span {
  color: var(--blog-accent-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-body .resource-card p {
  color: var(--blog-muted);
}

.blog-body .resource-card--placeholder {
  border-style: dashed;
  opacity: 0.82;
}

.blog-body .article-footer,
.blog-body .archive-list a {
  border-top-color: var(--blog-line);
}

.blog-body .archive-list span,
.blog-body .tag-index strong {
  color: var(--blog-ink);
}

.blog-body .tag-index a:hover {
  border-color: var(--blog-accent);
}

.blog-body .tag-category {
  max-width: none;
  margin-bottom: 34px;
}

.blog-body .tag-category__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blog-line);
}

.blog-body .tag-category__head span {
  color: var(--blog-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.blog-body .tag-category__head a {
  color: var(--blog-accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-body .post-switcher {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 10px auto 70px;
  padding-top: 16px;
  border-top: 1px solid var(--blog-line);
}

.blog-body .post-switcher--count-1 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.blog-body .post-switcher--count-1.post-switcher--has-next .post-switcher__link {
  grid-column: 2;
}

.blog-body .post-switcher--count-1.post-switcher--has-previous .post-switcher__link {
  grid-column: 1;
}

.blog-body .post-switcher__link {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px 20px;
  color: var(--blog-ink);
  background: #111721;
  border: 1px solid var(--blog-line);
  border-radius: 8px;
  text-align: left;
}

.blog-body .post-switcher__link span {
  color: var(--blog-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-body .post-switcher__direction {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.blog-body .post-switcher__arrow {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #071016;
  background: var(--blog-accent);
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-body .post-switcher__link strong {
  overflow: hidden;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.blog-body .post-switcher__link:hover {
  border-color: rgba(88, 214, 189, 0.58);
}

.blog-body .post-switcher__link--next {
  text-align: right;
}

.blog-body .post-switcher__link--next .post-switcher__direction {
  justify-self: end;
}

.blog-preview {
  color: #eef4ff;
  background:
    radial-gradient(circle at 76% 20%, rgba(88, 214, 189, 0.12), transparent 26rem),
    #0d1016;
  border-top-color: #222b38;
}

.blog-preview .eyebrow,
.blog-preview__link {
  color: #58d6bd;
}

.blog-preview .section__heading h2,
.blog-preview h3 {
  color: #eef4ff;
}

.blog-preview article {
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: #171c25;
  border-color: #2a3342;
}

.blog-preview article time {
  color: #c7ff6b;
}

.blog-preview article p {
  color: #a9b4c4;
}

.blog-preview img {
  order: 4;
  max-height: 150px;
  margin: 22px 0 0;
  border-color: #2a3342;
  filter: invert(1) hue-rotate(145deg) saturate(0.7) brightness(0.82);
  opacity: 0.82;
}

@media (max-width: 1280px) {
  .blog-body {
    --blog-page-gutter: clamp(20px, 4vw, 56px);
  }

  .blog-body .site-header__inner {
    grid-template-columns: 190px 1fr 142px;
  }

  .blog-body .blog-layout {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .blog-body {
    --blog-page-gutter: 16px;
  }

  .blog-body .site-header__inner,
  .blog-body main {
    width: var(--blog-content-width);
  }

  .blog-body .site-header__inner {
    min-height: 68px;
  }

  .blog-body .menu-toggle {
    color: var(--blog-ink);
    background: #151a22;
    border-color: var(--blog-line);
  }

  .blog-body .site-nav {
    inset: 76px 14px auto;
    background: #151a22;
    border-color: var(--blog-line);
  }

  .blog-body .blog-hero {
    max-width: none;
    padding-top: 46px;
  }

  .blog-body .blog-layout--article,
  .blog-body .article-page,
  .blog-body .article-header,
  .blog-body .article-body {
    min-width: 0;
    max-width: 100%;
  }

  .blog-body .article-header h1,
  .blog-body .article-body h2,
  .blog-body .article-body h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blog-body .article-body p,
  .blog-body .article-body li {
    overflow-wrap: break-word;
  }

  .blog-body .article-body :not(pre) > code,
  .blog-body .article-header code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .blog-body .code-block {
    max-width: 100%;
  }

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

  .blog-body .article-meta__source {
    flex-wrap: wrap;
  }

  .blog-body .article-meta__tags {
    width: 100%;
  }

  .blog-body .article-meta__tags .tag-row {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .blog-body .post-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .blog-body .post-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .blog-body .post-card__byline {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
    overflow: visible;
    text-align: left;
    white-space: normal;
  }

  .blog-body .post-card__meta .tag-row {
    width: 100%;
    max-width: 100%;
    justify-content: flex-end;
    overflow: hidden;
    text-align: right;
    white-space: normal;
  }

  .blog-body .post-card__meta .tag-row a {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
  }

  .blog-body .post-card__meta time {
    padding-top: 0;
    text-align: left;
  }

  .blog-body .post-switcher {
    grid-template-columns: 1fr;
  }

  .blog-body .post-switcher__link--next {
    text-align: left;
  }

  .blog-body .post-switcher__link--next .post-switcher__direction {
    justify-self: start;
  }

  .blog-body .post-card h2,
  .blog-body .post-card--featured h2 {
    font-size: 1.28rem;
  }

  .blog-preview img {
    max-height: none;
  }
}

.blog-categories,
.tag-categories {
  width: min(100% - 48px, 1680px);
  margin: 0 auto 80px;
}

.blog-category-section,
.tag-category {
  padding: 28px 0 38px;
  border-top: 1px solid var(--blog-line, var(--line));
}

.blog-category-section h2,
.tag-category h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 34px);
}

.blog-category-section p,
.tag-category p {
  max-width: 860px;
  margin: 0 0 18px;
  color: var(--muted);
}

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

.blog-feed--category-preview .post-card {
  min-height: 240px;
}

.blog-feed--category-preview .post-card h2 {
  font-size: 20px;
}

.blog-feed--category-preview .post-card__meta {
  align-items: flex-start;
  flex-direction: column;
  overflow: visible;
  white-space: normal;
}

.blog-feed--category-preview .post-card__byline,
.blog-feed--category-preview .post-card__meta .tag-row {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.blog-feed--category-preview .post-card__byline {
  justify-content: flex-start;
  text-align: left;
}

.blog-feed--category-preview .post-card__meta .tag-row {
  justify-content: flex-end;
  text-align: right;
}

.tag-cloud a,
.tag-row a {
  white-space: nowrap;
}

.blog-empty {
  color: var(--muted);
}

@media (max-width: 980px) {
  .blog-feed--category-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .blog-feed--category-preview {
    grid-template-columns: 1fr;
  }
}
