.page-content.article-page {
  max-width: 960px;
  padding-top: calc(var(--header-height) + 3rem);
}

.article-page .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.article-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.article-breadcrumb a {
  color: var(--color-text-muted);
}

.article-breadcrumb a:hover {
  color: var(--color-black);
  opacity: 1;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.article-cat-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f4b6e;
}

.article-page h1 {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.article-dek {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.article-hero {
  margin: 0 0 2rem;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.article-svg-banner {
  margin: 2rem 0;
  overflow: hidden;
}

.flow-svg {
  width: 100%;
  height: auto;
}

.flow-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawFlow 2.8s ease forwards;
}

.flow-dot {
  fill: #1f4b6e;
  opacity: 0;
  animation: popDot 0.45s ease forwards;
}

.flow-dot:nth-child(2) { animation-delay: 0.3s; }
.flow-dot:nth-child(3) { animation-delay: 0.6s; }
.flow-dot:nth-child(4) { animation-delay: 0.9s; }
.flow-dot:nth-child(5) { animation-delay: 1.2s; }
.flow-dot:nth-child(6) { animation-delay: 1.5s; }

@keyframes drawFlow {
  to { stroke-dashoffset: 0; }
}

@keyframes popDot {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.article-list {
  margin: 1rem 0 1.75rem 1.25rem;
}

.article-list li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.15rem 1.25rem;
  background: #f4f7fa;
  line-height: 1.65;
}

.callout--risk {
  background: #f7f4f1;
}

.callout--week {
  background: #f1f5f2;
}

.callout--param {
  background: #f2f4f8;
}

.article-chart {
  margin: 2.25rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.article-chart h3,
.article-table-wrap h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-label,
.chart-value {
  font-size: 11px;
  fill: #666;
  font-family: var(--font-main);
}

.chart-bar {
  opacity: 0;
  transform: translateY(12px);
}

.chart-bar.is-drawn {
  animation: barIn 0.55s ease forwards;
  animation-delay: var(--d, 0s);
}

.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.chart-line.is-drawn {
  animation: drawFlow 1.6s ease forwards;
}

.chart-point {
  fill: #1f4b6e;
  opacity: 0;
}

.chart-point.is-drawn {
  animation: popDot 0.4s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes barIn {
  to { opacity: 1; transform: translateY(0); }
}

.article-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.article-table th,
.article-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.article-table th {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.stat-card {
  padding: 1.25rem 1rem;
  background: #111;
  color: #f4f4f2;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(244, 244, 242, 0.7);
  line-height: 1.35;
}

.article-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.article-checklist {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checklist-box {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fafafa;
}

.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  line-height: 1.5;
}

.check-item:last-of-type {
  border-bottom: 0;
}

.check-item input {
  margin-top: 0.25rem;
  accent-color: #1f4b6e;
}

.check-item input:checked + span {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.checklist-progress {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f4b6e;
}

.article-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.related-card {
  display: block;
}

.related-card:hover {
  opacity: 1;
}

.related-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 0.65rem;
  transition: transform 0.45s ease;
}

.related-card:hover img {
  transform: scale(1.03);
}

.related-cat {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.related-card strong {
  font-size: 0.95rem;
  line-height: 1.35;
  display: block;
}

.related-all {
  margin-top: 1.5rem;
}

.category-section {
  margin-bottom: 4rem;
}

.category-section .section-header {
  margin-bottom: 2rem;
}

.category-broad-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f4b6e;
  border: 1px solid rgba(31, 75, 110, 0.35);
  padding: 0.15rem 0.45rem;
  vertical-align: middle;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2.5rem;
}

.category-nav a {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.category-nav a:hover,
.category-nav a.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
  opacity: 1;
}

.article-toc {
  margin: 1.75rem 0 2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f7f8f9;
}

.article-toc strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.article-toc li {
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.article-toc a {
  color: #1f4b6e;
}

.article-quote {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  background: #111;
  color: #f4f4f2;
}

.article-quote p {
  margin: 0;
  color: #f4f4f2;
}

.article-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(244, 244, 242, 0.78);
  font-style: normal;
}

.article-timeline {
  margin: 2rem 0;
}

.timeline-svg {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.tl-line {
  stroke: #1f4b6e;
  stroke-width: 3;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawFlow 1.8s ease forwards;
}

.tl-node circle {
  fill: #1f4b6e;
  opacity: 0;
  animation: popDot 0.4s ease forwards;
  animation-delay: var(--d, 0s);
}

.tl-node text {
  font-size: 11px;
  fill: #444;
  font-family: var(--font-main);
}

.tl-label {
  font-size: 9px !important;
}

.timeline-desc {
  padding-left: 1.2rem;
}

.timeline-desc li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.info-card {
  padding: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fafafa;
}

.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

.myth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.myth-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.myth-card h4 {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0.35rem 0 0.35rem;
}

.myth-card h4:first-child {
  margin-top: 0;
  color: #8a2b2b;
}

.faq-list {
  margin: 1rem 0 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.85rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: #1f4b6e;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0.75rem 0 0.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.gauge-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.gauge-svg {
  width: 160px;
  height: 160px;
}

.gauge-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 10;
}

.gauge-fg {
  fill: none;
  stroke: #1f4b6e;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 70px 70px;
  transition: stroke-dashoffset 1.2s ease;
}

.gauge-num {
  font-size: 22px;
  font-family: var(--font-editorial);
  fill: #111;
}

.gauge-cap {
  font-size: 9px;
  fill: #666;
  font-family: var(--font-main);
}

.article-page section {
  margin-top: 0.5rem;
}

/* —— Layout profiles by category —— */

.layout-deep-guide .article-hero--deep-guide {
  margin: 0 -0.5rem 2.25rem;
}

.layout-deep-guide .article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.layout-deep-guide .article-toc {
  background: #f3f5f7;
  border: 1px solid rgba(31, 75, 110, 0.18);
}

.layout-deep-guide .article-quote {
  background: #0f1720;
}

.layout-deep-guide .myth-grid {
  grid-template-columns: 1fr;
}

.layout-deep-guide .gauge-wrap {
  justify-content: flex-start;
}

.layout-field-playbook {
  max-width: 880px;
}

.layout-field-playbook .article-hero--field-playbook {
  margin: 0 0 2rem;
  padding: 0.65rem;
  background: #f6f6f4;
}

.layout-field-playbook .article-hero-image {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.layout-field-playbook .article-dek {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  color: #222;
}

.layout-field-playbook .article-toc {
  background: #111;
  border: 0;
  color: #f4f4f2;
}

.layout-field-playbook .article-toc strong {
  color: rgba(244, 244, 242, 0.7);
}

.layout-field-playbook .article-toc a {
  color: #9ec3df;
}

.layout-field-playbook .article-toc ol {
  color: #f4f4f2;
}

.layout-field-playbook .myth-grid {
  grid-template-columns: repeat(2, 1fr);
}

.layout-field-playbook .myth-card {
  background: #fafaf8;
  border-color: rgba(0, 0, 0, 0.08);
}

.layout-field-playbook .myth-card h4:first-child {
  color: #1f4b6e;
}

.layout-field-playbook .info-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .layout-field-playbook .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.layout-field-playbook .callout--week {
  font-size: 1.02rem;
}

.layout-field-playbook .article-svg-banner--route {
  margin: 1.25rem 0 1.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.layout-ops-tech .article-hero--ops-tech {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 1.5rem;
  max-width: 420px;
}

.layout-ops-tech .article-hero-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.layout-ops-tech .article-lead {
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1f4b6e;
  margin-bottom: 1.5rem;
}

.layout-ops-tech .article-toc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1rem 0;
}

.layout-ops-tech .article-toc strong {
  margin: 0;
  padding-top: 0.15rem;
}

.layout-ops-tech .article-toc ol {
  columns: 2;
  column-gap: 1.5rem;
  padding-left: 1rem;
}

.layout-ops-tech .gauge-wrap {
  justify-content: flex-end;
  margin: 0.5rem 0 1.25rem;
}

.layout-ops-tech .myth-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.layout-ops-tech .myth-card {
  background: #f7f8fa;
  border-top: 2px solid #1f4b6e;
}

.layout-ops-tech .myth-card h4:first-child {
  color: #1f4b6e;
}

.layout-ops-tech .callout--param {
  border-top: 2px solid #1f4b6e;
}

.layout-ops-tech .article-quote {
  background: #1a1a1a;
  font-family: var(--font-editorial);
}

.flow-rack {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawFlow 2.2s ease forwards;
}

.flow-rack:nth-child(2) {
  animation-delay: 0.2s;
}

.flow-rack:nth-child(3) {
  animation-delay: 0.4s;
}

.flow-mark {
  opacity: 0;
  animation: popDot 0.45s ease 0.9s forwards;
}

/* —— Specialty: Multas / fine-desk —— */
.layout-fine-desk {
  --fine-ink: #0f2a3d;
  --fine-accent: #c45c26;
  --fine-sand: #e8e0d4;
  --fine-panel: #f3efe8;
}

.layout-fine-desk .article-hero--fine-desk {
  margin: 0 0 1.75rem;
  position: relative;
}

.layout-fine-desk .article-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.layout-fine-desk .article-hero--fine-desk::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15, 42, 61, 0.55), transparent);
  pointer-events: none;
}

.layout-fine-desk h1 {
  font-family: var(--font-editorial);
  letter-spacing: -0.02em;
  color: var(--fine-ink);
}

.layout-fine-desk .fine-toc {
  background: var(--fine-panel);
  border: 1px solid rgba(15, 42, 61, 0.12);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 2rem;
}

.layout-fine-desk .fine-toc ol {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.fine-hero-strip {
  margin: 1rem 0 0.5rem;
  overflow: hidden;
}

.fine-hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fine-accent, #c45c26);
  font-weight: 600;
}

.fine-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.fine-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.fine-type-card {
  background: var(--fine-panel, #f3efe8);
  padding: 1rem 1.1rem;
  border-top: 3px solid var(--fine-accent, #c45c26);
}

.fine-type-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--fine-ink, #0f2a3d);
}

.fine-type-card p {
  margin: 0;
  font-size: 0.95rem;
}

.fine-calc {
  background: linear-gradient(145deg, #0f2a3d 0%, #1a455f 100%);
  color: #f5f1ea;
  padding: 1.35rem 1.4rem 1.2rem;
  margin: 1.25rem 0 1.75rem;
}

.fine-calc .article-note {
  color: rgba(245, 241, 234, 0.72);
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
}

.fine-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.fine-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
}

.fine-field input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 0.55rem 0.65rem;
  font-size: 1rem;
  border-radius: 0;
}

.fine-field input:focus {
  outline: 2px solid var(--fine-accent, #c45c26);
  outline-offset: 1px;
}

.fine-calc-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fine-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fine-stat-num {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f0c9a8;
  font-variant-numeric: tabular-nums;
}

.fine-stat-label {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.3;
}

.fine-zones {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  margin: 1.25rem 0;
  background: var(--fine-panel, #f3efe8);
  padding: 1rem;
}

.fine-zone-map {
  display: grid;
  gap: 0.5rem;
}

.fine-zone {
  text-align: left;
  border: 1px solid rgba(15, 42, 61, 0.18);
  background: #fff;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  font: inherit;
  color: var(--fine-ink, #0f2a3d);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.fine-zone:hover {
  border-color: var(--fine-accent, #c45c26);
}

.fine-zone.is-active {
  background: var(--fine-ink, #0f2a3d);
  color: #fff;
  border-color: var(--fine-ink, #0f2a3d);
  transform: translateX(3px);
}

.fine-zone-panel {
  background: #fff;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 42, 61, 0.12);
  animation: finePanelIn 0.35s ease;
}

.fine-zone-risk {
  margin-top: 0;
}

.fine-quiz {
  margin: 1.25rem 0 1.75rem;
}

.fine-quiz-card {
  background: var(--fine-panel, #f3efe8);
  padding: 1.15rem 1.25rem;
  border-top: 3px solid var(--fine-ink, #0f2a3d);
}

.fine-quiz-q {
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--fine-ink, #0f2a3d);
}

.fine-quiz-options {
  display: grid;
  gap: 0.5rem;
}

.fine-quiz-options button {
  text-align: left;
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(15, 42, 61, 0.2);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.fine-quiz-options button:hover:not(:disabled) {
  border-color: var(--fine-accent, #c45c26);
}

.fine-quiz-options button.is-correct {
  background: #e4f0e6;
  border-color: #2f6b3c;
}

.fine-quiz-options button.is-wrong {
  background: #f8e8e4;
  border-color: #a33b2a;
}

.fine-quiz-options button:disabled {
  cursor: default;
  opacity: 0.92;
}

.fine-quiz-feedback {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.fine-quiz-feedback.is-ok {
  color: #1e5a2c;
}

.fine-quiz-feedback.is-bad {
  color: #8a2f22;
}

.fine-quiz-score {
  margin: 1rem 0 0;
  font-weight: 600;
  color: var(--fine-ink, #0f2a3d);
}

@keyframes finePanelIn {
  from {
    opacity: 0.4;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .stat-row,
  .related-grid,
  .info-cards,
  .layout-field-playbook .myth-grid,
  .fine-type-grid,
  .fine-calc-grid,
  .fine-calc-result,
  .fine-zones {
    grid-template-columns: 1fr;
  }

  .layout-ops-tech .article-toc {
    grid-template-columns: 1fr;
  }

  .layout-ops-tech .article-toc ol {
    columns: 1;
  }
}
