:root {
  --ink: #101512;
  --ink-soft: #27302a;
  --field: #263228;
  --olive: #4f6049;
  --olive-light: #718069;
  --sand: #c9b88f;
  --amber: #d4933f;
  --paper: #f5f3ed;
  --paper-strong: #fffefa;
  --mist: #e5e8df;
  --line: #d4d8ce;
  --muted: #616a63;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 21, 18, 0.1);
  --radius: 18px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(16, 21, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 190px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.09em;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: #bfc6be;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.site-nav a,
.nav-disclosure {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.72rem;
  color: #e7ebe5;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-disclosure:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-group {
  position: relative;
}

.nav-disclosure::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.48rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(720px, 90vw);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel a {
  color: var(--ink);
  border-radius: 9px;
}

.nav-panel a:hover {
  color: var(--ink);
  background: var(--mist);
}

.header-cta {
  margin-left: 0.35rem;
  color: var(--ink) !important;
  background: var(--sand) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 65ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
}

.hero {
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, 0.93fr);
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  padding: 6rem 4rem 6rem 0;
}

.hero h1 {
  max-width: 820px;
}

.hero .lead {
  margin-top: 1.5rem;
  color: #cbd1ca;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.12rem;
  color: var(--white);
  background: var(--field);
  border: 1px solid var(--field);
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--sand);
  border-color: var(--sand);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-light {
  color: var(--ink);
  background: var(--paper-strong);
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 21, 18, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  background: #d7d6cf;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.1rem;
  color: var(--white);
  background: rgba(16, 21, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.proof-strip {
  color: var(--white);
  background: var(--field);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 118px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.proof-item span {
  color: #c6cec5;
  font-size: 0.88rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-mist {
  background: var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.section-head .lead {
  margin-top: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

.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));
}

.card {
  position: relative;
  min-height: 100%;
  padding: 1.4rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  background: var(--olive);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.card h3 + p,
.product-card h3 + p {
  margin-top: 0.75rem;
}

.card p,
.product-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  color: var(--field);
  font-size: 0.88rem;
  font-weight: 780;
}

.card-link::after {
  content: "→";
}

.product-card {
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e8e2;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card-tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: 4.2rem 0 4.8rem;
  color: var(--white);
  background: var(--ink);
}

.page-hero .lead {
  margin-top: 1.2rem;
  color: #cbd1ca;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  color: #bdc5bc;
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: #717b73;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 3.5rem;
  align-items: center;
}

.product-main-image {
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-main-image picture,
.product-main-image img {
  width: 100%;
}

.product-main-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f7f4;
}

.check-list,
.plain-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 0.55rem 0;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 900;
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--olive);
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-strong);
}

.spec-table th,
.spec-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  width: 30%;
  color: var(--ink-soft);
  background: #eceee8;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 4.8rem;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  left: 1.2rem;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 4rem;
  align-items: start;
}

.article-body > * + * {
  margin-top: 1.2rem;
}

.article-body h2 {
  margin-top: 3.2rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article-body h3 {
  margin-top: 2rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
}

.article-body li + li {
  margin-top: 0.5rem;
}

.note {
  padding: 1.2rem 1.3rem;
  background: #ebe8dd;
  border-left: 4px solid var(--olive);
  border-radius: 0 10px 10px 0;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 1.3rem;
  color: var(--white);
  background: var(--field);
  border-radius: 14px;
}

.side-card h2 {
  font-family: inherit;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.side-card p {
  margin-top: 0.75rem;
  color: #d3dad2;
  font-size: 0.9rem;
}

.cta-band {
  padding: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  background: var(--field);
  border-radius: 24px;
}

.cta-band .lead {
  margin-top: 1rem;
  color: #d5dcd4;
}

.rfq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
}

.rfq-panel {
  padding: 1.6rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.rfq-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9c0b8;
  border-radius: 8px;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  margin-top: 0;
  color: #dce1db;
  background: #0c100d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.2rem;
  padding: 4.5rem 0 3rem;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 1rem;
  color: #9fa8a0;
  font-size: 0.9rem;
}

.footer-col h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: #b8c0b9;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  color: #89928a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  color: var(--field);
  background: #dde4d9;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
}

.status-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background: var(--olive);
  border-radius: 50%;
}

.empty-state {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-state h1 {
  font-size: clamp(4rem, 15vw, 9rem);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0 0 1rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a,
  .nav-disclosure {
    width: 100%;
    justify-content: space-between;
  }

  .nav-panel {
    position: static;
    width: 100%;
    margin-top: 0.25rem;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .header-cta {
    margin-left: 0;
    justify-content: center !important;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr 42%;
  }

  .hero-copy {
    padding: 4.5rem 2.5rem 4.5rem 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .hero-grid,
  .product-intro,
  .content-layout,
  .rfq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 4rem 0 3rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .rfq-fields {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.59rem;
  }

  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .spec-table th,
  .spec-table td {
    min-width: 150px;
    padding: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Static v2 evidence-led product modules */
.product-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.product-gallery figure{margin:0;background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.product-gallery picture,.product-gallery img{display:block;width:100%;height:auto}
.product-gallery figcaption{padding:.65rem .85rem;color:var(--muted);font-size:.85rem}
.product-gallery-empty,.card-placeholder{display:grid;place-items:center;min-height:18rem;padding:2rem;background:var(--mist);border:1px dashed var(--line);border-radius:var(--radius);color:var(--muted);text-align:center}
.card-placeholder{min-height:14rem}
.fact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.fact-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.35rem}
.fact-card h3{margin-top:0}.fact-card .plain-list{margin-bottom:0}
@media(max-width:720px){.product-gallery,.fact-grid{grid-template-columns:1fr}}
@media(max-width:720px){body[data-path="/products/tactical-bags-backpacks/3p-tactical-backpacks/"] :is(.fact-card,.product-intro>div,.article-body p){overflow-wrap:anywhere}}

/* Static v2 mobile contact bar */
:root{--mobile-contact-safe:env(safe-area-inset-bottom,0px);--mobile-contact-space:calc(64px + var(--mobile-contact-safe))}
.mobile-contact-bar{display:none}
@media(max-width:768px){
  body[data-mobile-contact]{padding-bottom:var(--mobile-contact-space)}
  html:has(body[data-mobile-contact]){scroll-padding-bottom:calc(var(--mobile-contact-space) + 16px)}
  .mobile-contact-bar{position:fixed;inset:auto 0 0;z-index:90;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;height:var(--mobile-contact-space);padding:6px max(8px,env(safe-area-inset-right,0px)) calc(6px + var(--mobile-contact-safe)) max(8px,env(safe-area-inset-left,0px));border-top:1px solid var(--line);background:var(--paper-strong);box-shadow:0 -3px 14px rgba(16,21,18,.08)}
  .mobile-contact-bar a{display:flex;align-items:center;justify-content:center;min-width:0;min-height:48px;border-radius:8px;text-decoration:none;font-size:1rem;font-weight:700;line-height:1.2;color:var(--white);background:var(--field)}
  .mobile-contact-bar .mobile-contact-whatsapp{color:var(--ink);background:var(--sand)}
  .mobile-contact-bar a:focus-visible{outline:3px solid var(--ink);outline-offset:2px}
  body[data-mobile-contact] .site-nav[data-open="true"]{max-height:calc(100vh - 100px - var(--mobile-contact-space));max-height:calc(100dvh - 100px - var(--mobile-contact-space));overflow-y:auto;overscroll-behavior:contain}
}
/* End Static v2 mobile contact bar */

/* Owner-approved source taxonomy presentation */
body[data-path="/products/tactical-bags-backpacks/"] .fact-card{min-width:0;overflow-wrap:anywhere}
.taxonomy-jumps{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 2rem}
.taxonomy-jumps a{display:flex;align-items:center;min-height:44px;padding:.55rem .85rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius);font-weight:600}
.taxonomy-group{margin-top:2.5rem;scroll-margin-top:7rem}
.taxonomy-group-head{display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:.5rem 1rem;margin-bottom:1rem}
.taxonomy-group-head h3{margin:0}
.taxonomy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.taxonomy-card{min-width:0;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.25rem}
.taxonomy-card h3,.taxonomy-card h4{margin:0 0 .75rem;font-size:1.1rem;line-height:1.4;overflow-wrap:anywhere}
.taxonomy-context{font-size:.9rem;color:var(--muted);margin:0 0 .75rem}
.taxonomy-links{list-style:none;padding:0;margin:0}
.taxonomy-links li+li{border-top:1px solid var(--line)}
.taxonomy-links a{display:flex;align-items:center;min-height:44px;padding:.6rem 0;line-height:1.45;text-decoration:underline;text-underline-offset:.2em;overflow-wrap:anywhere}
.taxonomy-card a:hover,.taxonomy-jumps a:hover{color:var(--olive)}
.taxonomy-section{scroll-margin-top:6rem}
@media(max-width:1000px){.taxonomy-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.taxonomy-grid{grid-template-columns:1fr}.taxonomy-card{padding:1rem}.taxonomy-group-head{align-items:flex-start;flex-direction:column}}
