:root {
  --bg: #F5EFE6;
  --surface: #FFF9EF;
  --panel: #FFFFFF;
  --text: #261A13;
  --muted: #6F5B4B;
  --border: #D8C6AD;
  --primary: #7A3524;
  --primary-strong: #5F271C;
  --accent: #B6813B;
  --accent-soft: #D8B77A;
  --highlight: #E8D8BF;
  --shadow: 0 18px 40px rgba(38, 26, 19, 0.08);
  --shadow-soft: 0 8px 24px rgba(38, 26, 19, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-max: 1200px;
  --reading-max: 72ch;
  --gutter: clamp(1rem, 2vw, 1.5rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.75rem;
  --space-8: 3.5rem;
  --space-9: 4.5rem;
  --space-10: 6rem;
  --font-display: 'Space Grotesk', 'IBM Plex Sans', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', 'Noto Sans SC', system-ui, sans-serif;
  --line-tight: 1.12;
  --line-normal: 1.65;
  --line-loose: 1.8;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --focus-ring: 0 0 0 4px color-mix(in srgb, var(--accent) 26%, transparent);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--highlight) 42%, transparent) 0, transparent 28%),
    radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--accent-soft) 22%, transparent) 0, transparent 22%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 96%, white 4%) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: var(--line-normal);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.16em; }
a:hover { color: var(--primary); }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { border: 0; background: none; color: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); }
::selection { background: color-mix(in srgb, var(--accent) 24%, white); color: var(--text); }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: 0.85rem 1rem; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--border);
}
.skip-link:focus { top: 1rem; }
.site-shell { width: min(var(--content-max), calc(100% - (var(--gutter) * 2))); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
}
.site-header__inner {
  width: min(var(--content-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
}
.brand-mark { display: inline-flex; align-items: center; gap: 0.85rem; min-width: 0; text-decoration: none; }
.brand-mark__word { display: grid; gap: 0.14rem; }
.brand-mark__name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; line-height: 1; letter-spacing: 0; }
.brand-mark__meta { font-size: 0.82rem; color: var(--muted); }
.brand-mark__stamp {
  width: 2.5rem; aspect-ratio: 1; border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent-soft) 72%, white) 0 26%, transparent 27%),
    linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), var(--shadow-soft);
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(0.5rem, 1vw, 1rem); flex-wrap: wrap; }
.site-nav a, .site-nav button, .utility-link, .action-link, .button {
  border-radius: 999px; transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.site-nav a, .site-nav button {
  padding: 0.72rem 1rem; border: 1px solid transparent; text-decoration: none; color: var(--muted); background: transparent;
}
.site-nav a:hover, .site-nav button:hover, .site-nav a[aria-current="page"] {
  color: var(--primary); background: color-mix(in srgb, var(--highlight) 36%, white); border-color: color-mix(in srgb, var(--border) 85%, white);
}
.header-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 0.6rem; flex-wrap: wrap; }
.button, button.button, a.button, .utility-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.85rem; padding: 0.8rem 1.1rem; border: 1px solid transparent; text-decoration: none; cursor: pointer; letter-spacing: 0;
}
.button--primary { background: var(--primary); color: white; box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 22%, transparent); }
.button--primary:hover { background: var(--primary-strong); color: white; transform: translateY(-1px); }
.button--secondary { background: color-mix(in srgb, var(--surface) 82%, white); color: var(--primary); border-color: color-mix(in srgb, var(--border) 88%, white); }
.button--secondary:hover, .action-link:hover, .utility-link:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); box-shadow: var(--shadow-soft); }
.utility-link { border: 1px solid color-mix(in srgb, var(--border) 82%, white); background: color-mix(in srgb, var(--surface) 80%, white); color: var(--primary); text-decoration: none; }
main { display: block; }
.page { padding: clamp(1.4rem, 2vw, 2rem) 0 clamp(3rem, 5vw, 4.5rem); }
.collection-home, .page-section { padding: clamp(1.1rem, 2vw, 1.5rem) 0; }
.archive-masthead, .section-band, .institutional-context, .standards-ledger, .research-index, .resource-shelf, .issue-map { margin-top: var(--space-7); }
.masthead, .lead-band, .section-band, .proof-band, .panel, .card, .list-row, .form-shell, .footer-band, .download-row {
  background: color-mix(in srgb, var(--surface) 86%, white); border: 1px solid color-mix(in srgb, var(--border) 82%, white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft);
}
.masthead, .lead-band { padding: clamp(1.3rem, 3vw, 2.4rem); }
.archive-masthead { padding: clamp(1.4rem, 3vw, 2.6rem); display: grid; gap: var(--space-6); }
.kicker, .section-kicker, .label, .meta, .card-meta, .section-note { color: var(--muted); font-size: 0.92rem; }
.kicker, .section-kicker { text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3, .section-title, .hero h1, .display-title { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: var(--line-tight); letter-spacing: 0; text-wrap: balance; }
h1, .display-title { font-size: clamp(2.3rem, 4vw, 4.8rem); max-width: 12ch; }
h2, .section-title { font-size: clamp(1.5rem, 2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.4vw, 1.4rem); }
p, ul, ol, small { margin-top: 0; }
.lead, .hero-lead, .section-lead, .body-copy { max-width: var(--reading-max); font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: var(--line-loose); color: var(--muted); }
.stack { display: grid; gap: var(--space-3); }
.stack--wide { gap: var(--space-5); }
.grid { display: grid; gap: var(--space-4); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.hero-grid, .proof-grid, .footer-grid, .card-grid, .resource-grid, .contact-grid, .content-grid { display: grid; gap: var(--space-4); }
.hero-grid { grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.9fr); align-items: stretch; }
.hero-copy { display: grid; gap: var(--space-5); align-content: start; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.pill {
  display: inline-flex; align-items: center; min-height: 2.35rem; padding: 0.35rem 0.8rem; border-radius: 999px;
  background: color-mix(in srgb, var(--highlight) 38%, white); border: 1px solid color-mix(in srgb, var(--border) 78%, white); color: var(--primary); font-size: 0.88rem; letter-spacing: 0;
}
.hero-panel, .media-panel, .figure-panel {
  position: relative; overflow: clip; min-height: 100%; border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--border) 82%, white); background: linear-gradient(180deg, color-mix(in srgb, var(--panel) 88%, white) 0%, color-mix(in srgb, var(--surface) 84%, white) 100%); box-shadow: var(--shadow);
}
.hero-panel { display: grid; align-content: end; min-height: 28rem; padding: clamp(1.2rem, 2vw, 1.6rem); background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 80%, transparent) 0%, color-mix(in srgb, var(--surface) 74%, transparent) 100%),
    radial-gradient(circle at 22% 24%, color-mix(in srgb, var(--accent-soft) 26%, transparent) 0, transparent 28%),
    linear-gradient(160deg, color-mix(in srgb, var(--primary) 10%, white) 0%, color-mix(in srgb, var(--highlight) 34%, white) 100%); }
.hero-panel::before, .figure-panel::before, .media-panel::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 34%; background: linear-gradient(180deg, transparent 0%, rgba(38, 26, 19, 0.08) 100%); pointer-events: none;
}
.panel-card, .card, .list-row, .form-shell, .download-row, .info-box { padding: clamp(1rem, 2vw, 1.35rem); }
.card, .list-row, .download-row { display: grid; gap: var(--space-3); }
.card { min-width: 0; }
.card__title, .card h3 { max-width: 20ch; }
.card__body, .list-row p, .download-row p { color: var(--muted); }
.card__footer, .action-row, .form-actions, .inline-actions, .button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.stat-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }
.stat-card { display: grid; gap: 0.3rem; padding: 1rem 1.1rem; background: color-mix(in srgb, var(--surface) 72%, white); border: 1px solid color-mix(in srgb, var(--border) 82%, white); border-radius: var(--radius-md); }
.stat-value { font-family: var(--font-display); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1; letter-spacing: 0; }
.stat-label, .stat-note { color: var(--muted); font-size: 0.92rem; }
.list-grid, .download-list, .index-list, .topic-list, .footer-links, .footer-nav, .footer-meta { display: grid; gap: 0.85rem; }
.list-row, .download-row, .index-row { grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
.index-row { display: grid; gap: 0.3rem 1rem; padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, var(--border) 76%, white); }
.index-row:last-child { border-bottom: 0; }
.index-row__title { font-weight: 700; color: var(--text); }
.index-row__meta { color: var(--muted); font-size: 0.92rem; }
.index-row__action { align-self: center; }
.definition-grid { display: grid; gap: var(--space-3); }
.definition-row { display: grid; grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr); gap: var(--space-3); padding: 0.95rem 0; border-bottom: 1px solid color-mix(in srgb, var(--border) 76%, white); }
.definition-row dt { font-weight: 700; }
.definition-row dd { margin: 0; color: var(--muted); }
.table-wrap { width: 100%; overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid color-mix(in srgb, var(--border) 82%, white); background: color-mix(in srgb, var(--surface) 84%, white); box-shadow: var(--shadow-soft); }
.responsive-table { width: 100%; border-collapse: collapse; min-width: 42rem; }
.responsive-table th, .responsive-table td { padding: 0.95rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid color-mix(in srgb, var(--border) 76%, white); }
.responsive-table th { background: color-mix(in srgb, var(--highlight) 24%, white); font-weight: 700; }
.responsive-table tr:last-child td { border-bottom: 0; }
.form-shell { display: grid; gap: var(--space-4); }
.form-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 0.45rem; }
label { font-weight: 700; color: var(--text); }
input, textarea, select {
  width: 100%; min-height: 3rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); border: 1px solid color-mix(in srgb, var(--border) 82%, white);
  background: color-mix(in srgb, var(--surface) 86%, white); color: var(--text); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
textarea { min-height: 10rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 72%, white); }
input:focus, textarea:focus, select:focus { border-color: color-mix(in srgb, var(--accent) 54%, var(--border)); }
footer, .site-footer, .footer {
  margin-top: var(--space-9);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, white) 0%, color-mix(in srgb, var(--bg) 82%, white) 100%);
  border-top: 1px solid color-mix(in srgb, var(--border) 76%, white);
}
.site-footer__inner { display: grid; gap: var(--space-5); }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; align-items: start; }
.footer-brand { display: grid; gap: var(--space-3); }
.footer-brand p { color: var(--muted); max-width: 34ch; }
.footer-col { display: grid; gap: var(--space-3); }
.footer-title { font-family: var(--font-display); font-size: 1rem; margin: 0; }
.footer-links a, .footer-nav a, .footer-meta a { color: var(--muted); text-decoration: none; }
.footer-links a:hover, .footer-nav a:hover, .footer-meta a:hover { color: var(--primary); }
.footer-support { display: grid; gap: var(--space-3); }
.footer-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid color-mix(in srgb, var(--border) 76%, white); color: var(--muted); flex-wrap: wrap;
}
.surface-band { padding: clamp(1rem, 2vw, 1.5rem); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--surface) 84%, white); border: 1px solid color-mix(in srgb, var(--border) 82%, white); }
.proof-band { padding: clamp(1.2rem, 2.5vw, 1.8rem); }
.note, .helper, .caption { color: var(--muted); font-size: 0.92rem; }
.hidden { display: none !important; }
@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: auto 1fr; padding-block: 0.75rem; }
  .header-actions { grid-column: 1 / -1; justify-content: space-between; padding-top: 0.1rem; }
  .footer-grid, .hero-grid, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .site-shell, .site-header__inner { width: min(100% - 1.1rem, var(--content-max)); }
  .site-header { position: static; }
  .site-header__inner { grid-template-columns: 1fr; gap: 0.85rem; align-items: start; }
  .brand-mark { justify-self: start; }
  .site-nav, .header-actions { justify-content: flex-start; }
  .hero-grid, .footer-grid, .grid--2, .grid--3, .grid--4, .form-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 21rem; }
  .definition-row, .list-row, .download-row, .index-row { grid-template-columns: 1fr; }
  .index-row__action { justify-self: start; }
  .footer-bottom, .card__footer, .action-row, .inline-actions, .button-row, .form-actions { align-items: stretch; }
  .button, .utility-link, .site-nav a, .site-nav button { width: 100%; justify-content: center; }
  .hero-copy { gap: var(--space-4); }
}
@media (max-width: 520px) {
  :root { --gutter: 0.8rem; }
  .page { padding-top: 0.9rem; }
  h1, .display-title { max-width: 14ch; }
  .masthead, .lead-band, .archive-masthead, .card, .form-shell, .panel, .download-row, .list-row, .proof-band, footer, .site-footer, .footer { border-radius: var(--radius-lg); }
  .stat-grid { grid-template-columns: 1fr; }
  .responsive-table { min-width: 36rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* runtime-stock-media-module */
.shpitto-stock-media {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.shpitto-stock-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.75rem;
}
.shpitto-stock-media figcaption {
  margin: 0;
  color: var(--muted, #52606d);
  font-size: 0.95rem;
  line-height: 1.55;
}
.shpitto-stock-media--enterprise-proof {
  max-width: 42rem;
}
.proof-strip .shpitto-stock-media--enterprise-proof {
  margin-inline: auto;
}
.proof-strip .shpitto-stock-media--enterprise-proof img {
  aspect-ratio: 5 / 3;
  border-radius: 0.5rem;
  border: 1px solid var(--line, #e0e0e0);
}
.proof-strip .shpitto-stock-media--enterprise-proof figcaption {
  max-width: 52ch;
}
.split-grid--aligned {
  align-items: stretch;
}
.split-grid--aligned > * {
  min-height: 100%;
}
.media-frame--paired {
  display: grid;
  align-self: stretch;
  min-height: clamp(280px, 34vw, 420px);
}
.media-frame--paired img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.media-frame--paired .ph-caption {
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 28ch;
  padding: 0.875rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.78);
  color: var(--text, #1f1a17);
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(31, 26, 23, 0.08);
}
.article-ledger .blog-card,
.article-ledger .article-card,
.article-ledger .article-item {
  overflow: hidden;
}
.article-card--with-media,
.blog-card--with-media,
.article-item--with-media {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 0;
  padding: 0;
}
.article-card--with-media > img,
.blog-card--with-media > img,
.article-item--with-media > img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.article-card--with-media > .card-copy,
.blog-card--with-media > .card-copy,
.article-item--with-media > .card-copy,
.article-card--with-media > .article-copy,
.blog-card--with-media > .article-copy,
.article-item--with-media > .article-copy,
.article-card--with-media > .article-body,
.blog-card--with-media > .article-body,
.article-item--with-media > .article-body {
  padding: clamp(18px, 2vw, 26px);
  display: grid;
  gap: 12px;
  align-content: start;
}
@media (max-width: 720px) {
  .article-card--with-media,
  .blog-card--with-media,
  .article-item--with-media {
    grid-template-columns: 1fr;
  }
  .media-frame--paired {
    min-height: 240px;
  }
}
.enterprise-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 68vh, 44rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.enterprise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 54, 0.78) 0%, rgba(7, 27, 54, 0.52) 42%, rgba(7, 27, 54, 0.18) 100%);
  z-index: 1;
}
.enterprise-hero .shell-inner,
.enterprise-hero .masthead-stack,
.enterprise-hero .enterprise-hero__content,
.enterprise-hero .enterprise-proof-row {
  position: relative;
  z-index: 2;
}
.enterprise-hero .enterprise-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  max-width: none;
}
.enterprise-hero .enterprise-hero__media .media-cover,
.enterprise-hero .enterprise-hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}
.enterprise-hero .enterprise-hero__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  border: 0;
}
.enterprise-hero .enterprise-hero__content {
  max-width: 44rem;
  color: white;
}
.enterprise-hero .enterprise-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.enterprise-hero .enterprise-proof-row > * {
  backdrop-filter: blur(8px);
  background: rgba(7, 27, 54, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}
.masthead--single-column .masthead-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
}
.masthead--single-column .panel,
.masthead--single-column .proof-panel {
  max-width: 44rem;
}
.detail-layout .shpitto-stock-media,
.detail-grid .shpitto-stock-media {
  max-width: 32rem;
}
@media (max-width: 48rem) {
  .shpitto-stock-media--enterprise-proof,
  .detail-layout .shpitto-stock-media,
  .detail-grid .shpitto-stock-media {
    max-width: 100%;
  }
}
.page-title--measure {
  max-width: 20ch;
}
.proof-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.proof-figure {
  margin: 0;
  overflow: hidden;
}
.proof-figure__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.proof-figure__caption {
  padding: var(--space-4, 1rem);
  color: var(--text-subtle, #525252);
  font-size: 0.95rem;
}
.section-row--capability {
  align-items: end;
  margin-bottom: 1rem;
}
.section-row--cta {
  flex-wrap: wrap;
  align-items: center;
}
.stack--measure {
  max-width: 47.5rem;
}
.cta-surface {
  background: var(--surface);
}
.stack--section-intro {
  margin-bottom: var(--space-5);
}

/* runtime-blog-card-padding-fix */
.blog-card {
  padding: max(1.25rem, 20px);
  display: grid;
  gap: 0.875rem;
}