/* ── CoP content styles ─────────────────────────────────────────────────────
   Uses design tokens from shared.css :root.
   Applied to .cop-content inside .document-inner on Code of Practice pages.  */

/* Constrain CoP content to readable line width */
.document-inner { max-width: var(--reading-max); }
/* Sidebar layout is wider — expand to fit the two-column grid */
.document-inner:has(.overview-with-sidebar) { max-width: 1160px; }

/* The overview "Navigating the Act" sidebar + callout, the .overview-with-sidebar
   layout, .ov-sidebar, .content-constrain and the ≤1000px collapse are all defined
   in shared-components.css (shared with the index pages) — no CoP copy needed. */

/* ── Overview intro (plain subtitle style, mirrors .ov-intro) ───────────── */
.cop-summary-intro {
  margin-bottom: 1.75rem;
}
.cop-summary-text {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  max-width: 620px;
  margin: 0 0 0.75rem;
}
.cop-summary-text:last-child { margin-bottom: 0; }
.cop-summary-text strong { font-weight: 700; }
.cop-summary-text a { color: var(--brand); text-decoration: none; }
.cop-summary-text a:hover { text-decoration: underline; }

/* Section-level heading */
.cop-content h2 {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading);
  margin: var(--sp-10) 0 0.9rem;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.cop-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.cop-wg-section + .cop-content { margin-top: var(--sp-8); }

/* Chapter / subsection heading */
.cop-content h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: var(--sp-8) 0 var(--sp-2);
}

/* Commitment / Measure heading */
.cop-content h4 {
  font-family: var(--font-ui);
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--heading);
  margin: 1.6rem 0 var(--sp-2);
}

/* ── Commitments section intro (summary page) ───────────────────────────── */
.cop-commitments-intro {
  margin: var(--sp-12) 0 var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.cop-commitments-title {
  font-family: var(--font-ui);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--heading);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  border: none;
  padding: 0;
}
.cop-commitments-desc {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Per-commitment card ────────────────────────────────────────────────── */
.cop-commitment-card {
  background: var(--surface-badge);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.cop-commitment-header {
  margin-bottom: var(--sp-3);
}
.cop-commitment-num {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-2xs);
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.3rem;
}
.cop-commitment-title {
  font-family: var(--font-ui);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  line-height: 1.3;
}

/* Body text */
.cop-content p {
  font-size: var(--t-base);
  line-height: 1.82;
  color: var(--ink);
  margin: 0 0 0.9rem;
}

/* Lists */
.cop-content ol,
.cop-content ul {
  margin: var(--sp-2) 0 0.9rem 1.6rem;
  padding: 0;
}
.cop-content li {
  font-size: var(--t-base);
  line-height: 1.82;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

/* Nested ordered list: 1. → a. → i. */
.cop-content ol               { list-style-type: decimal; }
.cop-content ol ol            { list-style-type: lower-alpha; }
.cop-content ol ol ol         { list-style-type: lower-roman; }

/* Links */
.cop-content a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: var(--brand-border);
  text-underline-offset: 2px;
}
.cop-content a:hover { text-decoration-color: var(--brand); }

/* ── Collapsible boxes ───────────────────────────────────────────────────── */
.cop-note-box,
.cop-legal-box,
.cop-explainer-box {
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin: 1.1rem 0;
  font-size: var(--t-sm);
  line-height: 1.65;
}
/* Note / disclaimer box — smaller text to de-emphasise */
.cop-note-box {
  background: #fef9ec;
  border: 1px solid #f5e08a;
  color: #6b5c1a;
  font-size: var(--t-2xs);
  line-height: 1.6;
}
.cop-note-box p { font-size: var(--t-2xs); line-height: 1.6; }
.cop-note-box h4 {
  color: #6b5c1a;
  font-size: var(--t-3xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.6rem;
}

/* Legal basis box */
.cop-legal-box {
  background: #f0f4fa;
  border: 1px solid var(--brand-border);
  color: var(--ink);
}
.cop-legal-box h4 {
  color: var(--heading);
  font-size: var(--t-3xs);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 var(--sp-2);
}
.cop-legal-box p { font-size: var(--t-sm); margin: 0; color: var(--ink); }

/* Explanatory / FAQ box */
.cop-explainer-box {
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  color: var(--ink);
}
.cop-explainer-box h4 {
  color: var(--ink);
  font-size: var(--t-3xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.6rem;
}

/* ── Statement accordion ─────────────────────────────────────────────────── */
.cop-statement-accordion h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  padding-bottom: 0.6rem;
}
.cop-statement-accordion h4:hover { color: var(--brand); }
.cop-statement-chevron {
  font-size: 0.7rem;
  color: var(--ink-faint);
  flex-shrink: 0;
  margin-left: 0.5em;
  transition: transform 0.25s ease;
}
.cop-statement-accordion.cop-statement-open .cop-statement-chevron {
  transform: rotate(180deg);
}
.cop-statement-body {
  position: relative;
  max-height: 13.5em; /* ~8 lines at 1.82 line-height */
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.cop-statement-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4em;
  background: linear-gradient(transparent, var(--surface-subtle));
  pointer-events: none;
  transition: opacity 0.2s;
}
.cop-statement-accordion.cop-statement-open .cop-statement-body::after {
  opacity: 0;
}

/* ── Inline images ───────────────────────────────────────────────────────── */
.cop-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: zoom-in;
  margin: var(--sp-6) auto;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, transform 0.15s;
}
.cop-img:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  transform: translateY(-1px);
}
.cop-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  margin: var(--sp-6) 0;
}
.cop-img-caption {
  font-family: var(--font-ui);
  font-size: var(--t-2xs);
  color: var(--ink-faint);
  font-style: italic;
  text-align: center;
  max-width: 560px;
}

/* Gallery grid */
.cop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.cop-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.cop-lightbox.open { display: flex; }
.cop-lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.cop-lightbox-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: var(--surface);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cop-lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── CoP page header ─────────────────────────────────────────────────────── */
.cop-doc-header {
  margin-bottom: var(--sp-6);
}
.cop-doc-kicker {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  /* Match the index hero spacing (.ov-kicker 0.6rem below) */
  margin-bottom: 0.6rem;
}
.cop-doc-kicker a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.cop-doc-kicker a:hover { opacity: 0.7; }
.cop-doc-title {
  font-family: var(--font-ui);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  /* Match the index hero spacing (.ov-title-row 1rem below the title) */
  margin-bottom: 1rem;
}
.cop-doc-ref {
  font-family: var(--font-ui);
  font-size: var(--t-2xs);
  color: var(--ink-faint);
}
.cop-lang-block {
  margin-top: var(--sp-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.cop-lang-label {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-1);
}

.cop-chapter-intro {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  max-width: 620px;
  margin: 0.5rem 0 0.75rem;
}
.cop-translation-notice {
  margin-top: var(--sp-3);
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  color: var(--ink-faint);
  line-height: 1.5;
}
.cop-translation-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Glossary (dl/dt/dd) ─────────────────────────────────────────────────── */
.cop-content dl {
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cop-content dt {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--heading);
  background: var(--surface-subtle);
  padding: 0.55rem var(--sp-4);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.cop-content dd {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink);
  padding: 0.55rem var(--sp-4) 0.75rem;
  border-bottom: 1px solid var(--surface-badge);
  margin: 0;
}
.cop-content dd:last-child { border-bottom: none; }
.cop-content section#glossary { margin: var(--sp-2) 0 var(--sp-6); }

/* ── Chapter cards (summary page) ────────────────────────────────────────── */
.cop-chapter-cards-wrap {
  margin-bottom: var(--sp-4);
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.cop-chapter-cards-title {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.cop-chapter-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0 var(--sp-6);
}
.cop-chapter-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cop-chapter-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--surface-subtle);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.cop-chapter-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.cop-chapter-card-num {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.cop-chapter-card-label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cop-chapter-card-desc {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.cop-chapter-card-arrow {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 600;
  color: var(--ink-faint);
  margin-top: var(--sp-1);
  transition: color 0.15s;
}
.cop-chapter-card:hover .cop-chapter-card-arrow { color: var(--brand); }

/* ── Chapter nav strip ───────────────────────────────────────────────────── */
.cop-chapter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.cop-chapter-link {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-1) 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.12s, border-color 0.12s;
}
.cop-chapter-link:hover   { color: var(--brand); border-color: var(--brand-border); text-decoration: none; }
.cop-chapter-link.current { color: var(--brand); border-color: var(--brand); background: var(--brand-light); }


/* ══════════════════════════════════════════════════════════════════
   Responsive — mobile  (≤ 768 px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Lightbox: full-screen on mobile ── */
  .cop-lightbox img {
    max-width: 98vw;
    max-height: 78vh;
  }
  /* Larger close button touch target */
  .cop-lightbox-close {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.3rem;
    top: var(--sp-3);
    right: var(--sp-3);
  }

  /* ── Chapter cards: 1-col ── */
  .cop-chapter-cards { grid-template-columns: 1fr; }

  /* ── Chapter nav: allow wrapping ── */
  .cop-chapter-nav { gap: var(--sp-1); }
}

/* ── CoP sidebar chapter number kicker ──────────────────────────────────── */
.cop-toc-ch-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
/* Left column inside accordion header: stacks ch-num above label */
.cop-toc-ch-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Flat link with chapter num stacked above label */
.toc-flat-link.cop-toc-has-chnum {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ── CoP sidebar chapter link ────────────────────────────────────────────────
   The chapter title inside a collapsible header is a navigation link.
   It inherits the header's uppercase/weight, so only colour/decoration needed. */
.toc-cop-ch-link {
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.toc-cop-ch-link:hover { text-decoration: underline; }
.toc-collapsible-header.toc-active { background: var(--brand-light); color: var(--brand); }

/* ── PDF download button ─────────────────────────────────────────────────── */
.cop-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.9rem;
  padding: 0.45rem 1rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--brand);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: var(--brand-light);
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.cop-pdf-btn:hover {
  background: var(--brand-light-hover, #dbeafe);
  border-color: var(--brand);
  text-decoration: none;
}
.cop-pdf-btn i { font-size: 0.85em; }

/* PDF button on chapter overview cards */
.cop-chapter-card-pdf {
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45rem 1.3rem;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--brand-border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--surface);
  text-decoration: none;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.cop-chapter-card-pdf:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-light);
  text-decoration: none;
}
.cop-chapter-card-pdf i { font-size: 1em; }

/* ── Working group profiles ──────────────────────────────────────────────── */
.cop-wg-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: var(--sp-2) 0 var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.cop-wg-group-label {
  font-family: var(--font-ui);
  font-size: var(--t-2xs);
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}
.cop-wg-section > div + div {
  padding-top: 0;
}
.cop-wg-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cop-wg-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.cop-wg-profile:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  box-shadow: var(--shadow-sm);
}
.cop-wg-avatar {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover;
  display: block;
}
.cop-wg-avatar-placeholder {
  background: var(--surface-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 0.9rem;
}
.cop-wg-bio-note {
  margin-top: var(--sp-4);
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  color: var(--ink-faint);
  line-height: 1.5;
}
.cop-wg-bio-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cop-wg-profile:hover .cop-wg-profile-name { color: var(--brand); }
.cop-wg-profile-info { display: flex; flex-direction: column; gap: 0.1rem; }
.cop-wg-profile-name {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.cop-wg-profile-role {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .cop-wg-profiles { gap: 0.5rem; }
  .cop-wg-profile { min-width: 140px; }
}

/* ── All-WG section (cop-home) ───────────────────────────────────────────── */
.cop-all-wg-wrap {
  border-bottom: 1px solid var(--border);
  padding: 0 0 var(--sp-8);
  margin-bottom: var(--sp-8);
}
.cop-all-wg-sections {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.cop-all-wg-chapter {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.cop-all-wg-chapter-label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Working group bio modal ─────────────────────────────────────────────── */
.cop-wg-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cop-wg-modal-backdrop.is-open {
  display: flex;
}
.cop-wg-modal-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(0,0,0,0.18));
  padding: 2rem 2rem 1.75rem;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cop-wg-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-faint);
  font-size: 1rem;
  padding: 0.25rem 0.4rem;
  line-height: 1;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.cop-wg-modal-close:hover {
  color: var(--heading);
  background: var(--surface-subtle);
}
.cop-wg-modal-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  margin-bottom: 1rem;
}
.cop-wg-modal-name {
  font-family: var(--font-ui);
  font-size: var(--t-lg, 1.15rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.25rem;
}
.cop-wg-modal-role {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}
.cop-wg-modal-country {
  font-family: var(--font-ui);
  font-size: var(--t-3xs);
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.cop-wg-modal-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
  text-align: left;
  margin: 0;
}

/* ── CoP search results ──────────────────────────────────────────────────────
   The section (parent) result's object title — e.g. "Safety & Security › Measure
   2.1" — is bold here to match the index search results. (Scoped to CoP; the index
   uses .search-result-title for a non-bold description.) */
.search-result-parent .search-result-title { font-weight: 700; }
