:root {
  --ink: #17212b;
  --muted: #5d6875;
  --line: #d8e0e7;
  --brand: #0b5b78;
  --brand-dark: #082f42;
  --accent: #b8642a;
  --green: #267367;
  --paper: #f5f7f8;
  --mist: #edf3f4;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 100;
  transform: translateY(-100%);
  padding: 10px 14px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 24px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.utility-bar nav,
.actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(300px, 520px) auto;
  align-items: center;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
}

.topbar .actions {
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  color: var(--brand-dark);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark strong {
  color: var(--brand);
  font-size: 34px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-wordmark span {
  max-width: 230px;
  color: var(--brand-dark);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.search {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.search input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 13px 16px;
  outline: 0;
}

.search button {
  min-width: 72px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid var(--line);
  background: #f1f5f6;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.actions {
  justify-content: flex-end;
  color: var(--brand-dark);
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.button-secondary {
  background: var(--white);
  color: var(--brand);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.nav-group {
  position: relative;
  min-width: 0;
}

.nav-group-label {
  display: block;
  padding: 12px 14px;
  color: #284c68;
  font-weight: 650;
  text-align: center;
}

.nav-group-label:hover,
.nav-group:focus-within .nav-group-label,
.nav-group:hover .nav-group-label,
.nav-group-label[aria-current="page"] {
  color: var(--accent);
}

.nav-group-label[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--accent);
}

.nav-group-links {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  z-index: 30;
  display: grid;
  gap: 1px;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-group-links,
.nav-group:focus-within .nav-group-links {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-group-links a {
  display: block;
  padding: 10px 12px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
}

.nav-group-links a:hover,
.nav-group-links a:focus {
  background: var(--mist);
  color: var(--accent);
}

.editorial-front {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(310px, 0.75fr);
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 24px 36px;
  background: var(--line);
}

#front-lead {
  display: grid;
  min-width: 0;
}

.front-lead-story {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(400px, 1.12fr);
  height: 100%;
  min-height: 430px;
  background: var(--white);
}

.front-lead-story > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.front-lead-story--diagram > img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: var(--white);
}

.front-lead-story--landscape,
.front-lead-story--landscape-cover {
  grid-template-columns: 1fr;
  grid-template-rows: 330px auto;
}

.front-lead-story--landscape > img,
.front-lead-story--landscape-cover > img {
  height: 330px;
  min-height: 330px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.front-lead-story--landscape > img {
  object-fit: contain;
  object-position: center;
}

.front-lead-story--landscape-cover > img {
  object-fit: cover;
  object-position: 50% 44%;
}

.eyebrow,
.tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
}

.tag {
  display: inline-block;
  letter-spacing: 0.06em;
}

.front-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.front-kicker,
.front-latest span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.front-lead-copy h1 {
  margin: 14px 0 16px;
  font-size: 34px;
  line-height: 1.08;
}

.front-lead-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.front-lead-copy .text-link {
  color: var(--brand);
  font-weight: 850;
}

.front-rail {
  padding: 26px;
  background: var(--paper);
}

.front-rail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-dark);
}

.front-rail-heading h2 {
  margin: 0;
  font-size: 24px;
}

.front-rail-heading a,
.front-tools a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.front-latest {
  display: grid;
}

.front-latest > a {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.front-latest strong {
  font-size: 18px;
  line-height: 1.25;
}

.front-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
}

.stats-strip,
.operations-pulse,
.trust-controls,
.about-band,
.product-grid,
.method-section,
.source-map,
.knowledge-centre,
.section-grid,
.homepage-discovery,
.market-board,
.content-band,
.coverage-band,
.regions-section,
.directory-section,
.member-products,
.taxonomy-section,
.reports-section,
.events-section,
.membership,
.faq-section,
.operating-structure,
.governance-contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 0;
  padding-bottom: 0;
}

.stats-strip article {
  padding: 24px;
  background: var(--brand-dark);
  color: var(--white);
}

.stats-strip span,
.market-strip span,
.market-strip small {
  display: block;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.stats-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 36px;
}

.operations-pulse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.operations-pulse h2 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.18;
}

.operations-pulse p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trust-controls {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.trust-copy,
.trust-grid a {
  min-height: 236px;
  padding: 26px;
  background: var(--white);
}

.trust-copy {
  background: var(--mist);
}

.trust-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
}

.trust-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid a {
  display: grid;
  align-content: start;
  color: inherit;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trust-grid a:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.1);
}

.trust-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid strong {
  margin-top: 13px;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.13;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.desk-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(190px, 0.75fr));
  gap: 1px;
  background: var(--line);
}

.desk-lead,
.desk-panel a {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
}

.desk-lead {
  background: var(--brand-dark);
  color: var(--white);
}

.desk-lead h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.desk-panel a {
  display: grid;
  align-content: start;
  transition: background 180ms ease, transform 180ms ease;
}

.desk-panel a:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.desk-panel a span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desk-panel a strong {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.1;
}

.desk-panel a p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-band h2,
.membership h2,
.events-section h2,
.governance-contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.about-band p,
.product-grid p,
.story-card p,
.leader-card p,
.article-card p,
.coverage-band p,
.sector-card p,
.report-card p,
.directory-card p,
.events-section p,
.membership p,
.membership-tiers p,
.governance-contact p {
  color: var(--muted);
  line-height: 1.56;
}

.about-band > p {
  margin: 30px 0 0;
  font-size: 18px;
}

.editorial-note,
.launch-note {
  padding: 16px 18px;
  background: var(--mist);
  border-left: 4px solid var(--accent);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.product-grid article,
.coverage-band article,
.coverage-band a,
.report-card,
.directory-card,
.event-card,
.membership-tiers article,
.governance-contact article {
  background: var(--white);
}

.product-grid article {
  padding: 26px;
}

.product-grid h2,
.coverage-band h2 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.product-grid a {
  color: var(--brand);
  font-weight: 800;
}

.performance-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.performance-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.performance-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.performance-strip nav {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.performance-strip a {
  color: var(--brand);
  font-weight: 800;
}

.recognition-news {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px 46px;
  border-top: 1px solid var(--line);
}

.recognition-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.recognition-notice-card {
  display: block;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(23, 33, 43, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recognition-notice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 100, 42, 0.55);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.12);
}

.recognition-notice-card span,
.recognition-notice-card small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-notice-card h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.recognition-notice-card p {
  color: var(--muted);
  line-height: 1.55;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.method-section h2,
.source-map h2,
.taxonomy-section h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.operating-structure {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.operating-structure h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.operating-structure > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.structure-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.structure-grid span {
  color: var(--accent);
  font-weight: 850;
}

.structure-grid h3 {
  margin: 10px 0;
  font-size: 24px;
}

.structure-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.method-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.knowledge-centre {
  border-top: 1px solid var(--line);
}

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

.knowledge-card {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover;
  transform: scale(1.01);
  transition: transform 240ms ease;
}

.knowledge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 47, 66, 0.08), rgba(8, 47, 66, 0.88));
}

.knowledge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.knowledge-card:hover::before {
  transform: scale(1.06);
}

.knowledge-card span {
  color: #ffd597;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.14;
}

.knowledge-dredging::before {
  background-image: url("assets/editorial/knowledge/dredging.jpg?v=20260816-chpa-f0488c4d8f");
}

.knowledge-contracts::before {
  background-image: url("assets/editorial/knowledge/contracts-procurement.jpg?v=20260816-chpa-f0488c4d8f");
}

.knowledge-ports::before {
  background-image: url("assets/editorial/knowledge/ports-terminals.jpg?v=20260816-chpa-f0488c4d8f");
}

.knowledge-utilities::before {
  background-image: url("assets/editorial/knowledge/marine-utilities.jpg?v=20260816-chpa-f0488c4d8f");
}

.source-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.source-map > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.source-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
}

.source-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.source-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.method-steps li {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.method-steps span {
  color: var(--accent);
  font-weight: 850;
}

.method-steps h3 {
  margin: 10px 0;
  font-size: 24px;
}

.method-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 46px;
}

.intelligence-section,
.project-section {
  grid-template-columns: minmax(0, 1fr);
}

.coverage-desk nav {
  display: grid;
  border-top: 2px solid var(--brand-dark);
}

.coverage-desk nav a {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.coverage-desk nav strong {
  color: var(--brand-dark);
  font-size: 17px;
}

.coverage-desk nav span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading.stacked {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.1;
}

.section-heading a,
.report-card a {
  color: var(--brand);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid .article-card {
  display: flex;
  flex-direction: column;
}

.feature-grid .article-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.feature-grid .article-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.feature-grid .article-card .date {
  margin-top: auto;
}

.article-card,
.leader-card,
.story-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(23, 33, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover,
.leader-card:hover,
.story-card:hover,
.report-card:hover,
.directory-card:hover,
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 91, 120, 0.34);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.11);
}

.article-card:has(img.award-image) {
  border-color: rgba(184, 100, 42, 0.45);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.13);
}

.article-card:has(img.award-image) .tag {
  color: #9c551f;
}

.brief-card {
  display: flex;
  min-height: 100%;
  border-top: 4px solid var(--brand);
}

.brief-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.brief-card .tag {
  color: var(--brand);
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brief-meta span {
  border: 1px solid rgba(11, 91, 120, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.78);
}

.article-card img,
.leader-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-top: 4px solid var(--brand);
}

.article-card img.award-image {
  object-fit: cover;
  background: var(--brand-dark);
  padding: 0;
}

.card-body {
  padding: 14px 16px 16px;
}

.article-card h3,
.leader-card h3,
.story-card h3,
.report-card h3,
.event-card h3,
.membership-tiers h3 {
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.24;
}

.date {
  color: #7b858e;
  font-size: 14px;
}

.leader-list {
  display: grid;
  gap: 14px;
}

.market-board {
  border-top: 1px solid var(--line);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.market-strip article {
  padding: 24px;
  background: #f7fafb;
}

.market-strip span,
.market-strip small {
  color: var(--muted);
}

.market-strip strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--green);
  font-size: 34px;
}

.coverage-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.coverage-band article {
  padding: 28px;
}

.coverage-band a {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease;
}

.coverage-band a::before,
.coverage-band a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.coverage-band a::before {
  z-index: -2;
  background: center / cover;
  transition: transform 240ms ease;
}

.coverage-band a::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 47, 66, 0.08), rgba(8, 47, 66, 0.88));
}

.coverage-band a:hover {
  transform: translateY(-3px);
}

.coverage-band a:hover::before {
  transform: scale(1.05);
}

.coverage-band a[href="sectors.html"]::before {
  background-image: url("assets/editorial/knowledge/ports-terminals.jpg?v=20260816-chpa-f0488c4d8f");
}

.coverage-band a#contracts::before {
  background-image: url("assets/editorial/knowledge/contracts-procurement.jpg?v=20260816-chpa-f0488c4d8f");
}

.coverage-band a#delivery::before {
  background-image: url("assets/editorial/knowledge/performance-evidence.jpg?v=20260816-chpa-f0488c4d8f");
}

.coverage-band a .tag {
  color: #ffd597;
}

.coverage-band a p {
  color: rgba(255, 255, 255, 0.82);
}

.regions-section {
  border-top: 1px solid var(--line);
}

.homepage-discovery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 46px;
  border-top: 1px solid var(--line);
}

.homepage-region-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  border-bottom: 1px solid var(--line);
}

.homepage-region-link {
  display: flex;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: inherit;
}

.homepage-region-link strong {
  color: var(--brand-dark);
  font-size: 17px;
}

.homepage-region-link span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.homepage-region-link:hover strong,
.homepage-tool-index a:hover strong {
  color: var(--brand);
}

.homepage-research-panel {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.homepage-research-panel h2 {
  margin: 6px 0 20px;
  font-size: 28px;
  line-height: 1.12;
}

.homepage-tool-index {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.homepage-tool-index a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.homepage-tool-index strong {
  color: var(--brand-dark);
  font-size: 16px;
}

.homepage-tool-index span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

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

.region-card {
  display: block;
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 91, 120, 0.35);
}

.region-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.region-card p {
  color: var(--muted);
  line-height: 1.55;
}

.directory-section {
  border-top: 1px solid var(--line);
}

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

.directory-card {
  min-height: 210px;
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.directory-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--mist);
}

.directory-card-body {
  display: block;
  padding: 20px 22px 22px;
}

.directory-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.16;
}

.member-products {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.member-products h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.product-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.product-row {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 1.2fr;
  min-width: 720px;
  border-top: 1px solid var(--line);
}

.product-row:first-child {
  border-top: 0;
}

.product-row span {
  padding: 14px;
}

.product-head {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taxonomy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.taxonomy-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.taxonomy-grid article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
}

.taxonomy-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-band {
  border-top: 1px solid var(--line);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-dark);
  padding: 0 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter.active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.story-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-card {
  padding: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
}

.project-section {
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-main {
  min-width: 0;
}

.legacy-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 16px;
}

.project-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.project-mobile-meta {
  display: none;
}

.tracker-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px);
  gap: 10px;
  margin-bottom: 14px;
}

.tracker-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
}

.tracker-summary strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.tracker-controls input,
.tracker-controls select {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  outline: 0;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(90px, 0.72fr) minmax(110px, 0.9fr) minmax(150px, 1.15fr) minmax(100px, 0.72fr);
  min-width: 0;
  border-top: 1px solid var(--line);
}

.project-row:first-child {
  border-top: 0;
}

.project-row span {
  min-width: 0;
  padding: 11px 12px;
}

.project-row:not(.project-head) > span[data-label="Status"] {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.project-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.project-head {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
}

.confidence.confirmed {
  background: #e5f2ee;
  color: #176354;
}

.confidence.reported {
  background: #fff2df;
  color: #8b4c16;
}

.confidence.watching {
  background: #eef1f5;
  color: #4c5965;
}

.project-empty {
  min-width: 820px;
  padding: 18px;
  color: var(--muted);
}

.sector-card {
  padding: 28px;
  background: var(--paper);
  border-left: 5px solid var(--accent);
}

.sector-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.08;
}

.sector-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--brand-dark);
  font-weight: 700;
}

.reports-section {
  border-top: 1px solid var(--line);
}

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

.report-card {
  padding: 24px;
  border: 1px solid var(--line);
}

.report-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.report-catalogue {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.report-catalogue > h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
}

.report-catalogue > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.report-catalogue .report-preview-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 26px;
}

.report-catalogue .report-preview-card {
  grid-column: span 2;
}

.report-catalogue .report-preview-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.report-preview-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.report-preview-media,
.report-preview-media img {
  display: block;
  width: 100%;
}

.report-preview-media img {
  aspect-ratio: 16 / 9;
  border-bottom: 4px solid var(--brand);
  object-fit: cover;
}

.report-preview-card > .tag {
  margin: 18px 20px 0;
}

.report-preview-card h3,
.report-preview-card > p {
  margin-right: 20px;
  margin-left: 20px;
}

.report-preview-card > .report-preview-meta {
  margin-top: 0;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 760;
}

.report-preview-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.report-preview-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.report-preview-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.report-preview-actions a {
  padding: 13px 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.report-preview-actions a + a {
  border-left: 1px solid var(--line);
}

.report-preview-actions a:hover,
.report-preview-actions a:focus-visible {
  background: var(--mist);
}

.report-programme-status {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  margin-top: 36px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-programme-heading h2 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.report-programme-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.report-programme-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.report-programme-facts > div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-programme-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.report-programme-facts dd {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 780;
  line-height: 1.45;
}

.report-method-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  background: var(--mist);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.event-card span {
  color: var(--accent);
  font-weight: 850;
}

.event-card p {
  grid-column: 2;
  margin: -4px 0 0;
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
  background: #102f3d;
  color: var(--white);
}

.membership p {
  color: rgba(255, 255, 255, 0.76);
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.membership-tiers article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.membership-tiers h3 {
  color: var(--white);
}

.membership-tiers p {
  margin-bottom: 0;
}

.signup {
  grid-column: 1 / -1;
}

.signup label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.signup div {
  display: flex;
  gap: 10px;
  max-width: 700px;
}

.signup input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: #ffd7a7;
  font-weight: 700;
}

.signup-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.noscript-note {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 18px;
  background: var(--brand-dark);
  color: var(--white);
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.faq-list article {
  padding: 24px;
  background: var(--white);
}

.faq-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.governance-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.governance-contact article {
  padding: 34px;
}

.governance-contact .button {
  margin-top: 12px;
}

.confidence-scale {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.confidence-scale span {
  display: block;
  padding: 10px 12px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.confidence-scale strong {
  color: var(--brand-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer strong {
  color: var(--brand);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 20px;
}

.footer-nav nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav nav strong {
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--brand);
}

.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.policy-brand {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 42px;
  font-weight: 850;
}

.policy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.policy-page h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

.policy-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.policy-page a:not(.policy-brand) {
  color: var(--brand);
  font-weight: 800;
}

.detail-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 24px 58px;
}

.detail-brand {
  margin-bottom: 32px;
}

.secondary-site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -20px 0 38px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.secondary-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.secondary-site-nav a[aria-current="page"] {
  background: var(--brand-dark);
  color: var(--white);
}

.detail-page h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 28px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.publication-meta strong {
  color: var(--ink);
}

.publication-meta a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.publication-meta a:hover,
.publication-meta a:focus-visible {
  color: var(--brand);
}

.project-change-log-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: -10px 0 24px;
}

.project-change-log-actions .button {
  margin: 0;
}

.project-change-log-actions .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--brand);
  font-weight: 800;
}

.detail-dek {
  max-width: 850px;
  color: var(--ink) !important;
  font-size: 21px !important;
  line-height: 1.55 !important;
}

.brief-reading {
  max-width: 850px;
  margin-top: 30px;
}

.brief-reading h2 {
  margin: 30px 0 10px;
  font-size: 25px;
}

.brief-reading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.brief-comparison {
  margin-top: 42px;
}

.compact-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 18px;
}

.compact-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

.brief-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.brief-comparison-grid article {
  padding: 28px;
  background: var(--white);
}

.brief-comparison-grid h3 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 25px;
}

.brief-comparison-grid dl,
.project-anatomy dl {
  margin: 0;
}

.brief-comparison-grid dl div,
.project-anatomy dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.brief-comparison-grid dt,
.project-anatomy dt {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brief-comparison-grid dd,
.project-anatomy dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.decision-read {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
}

.decision-read > div {
  padding: 28px;
  background: var(--paper);
}

.decision-read > div:last-child {
  background: var(--brand-dark);
  color: var(--white);
}

.decision-read h2,
.decision-read h3 {
  margin: 6px 0 12px;
  font-size: 26px;
}

.decision-read p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.decision-read ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.project-anatomy {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.project-anatomy > div,
.project-anatomy > dl {
  padding: 26px;
  background: var(--white);
}

.project-anatomy > div {
  background: var(--brand-dark);
  color: var(--white);
}

.project-anatomy > div .eyebrow {
  color: #ffd597;
}

.project-anatomy h2 {
  margin: 8px 0 0;
  font-size: 29px;
  line-height: 1.08;
}

.project-package-register {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-package-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  padding: 28px 0;
}

.project-package-heading h2 {
  max-width: 680px;
  margin: 7px 0 0;
  color: var(--brand-dark);
  font-size: 32px;
  line-height: 1.08;
}

.project-package-heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-package-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.project-package-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr);
  gap: 26px;
  padding: 24px;
  background: var(--white);
}

.project-package-row > div > span,
.project-package-row dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-package-row h3 {
  margin: 7px 0 0;
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.18;
}

.project-package-row dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(130px, 0.45fr) minmax(260px, 1.35fr);
  gap: 18px;
  margin: 0;
}

.project-package-row dl div {
  min-width: 0;
}

.project-package-row dt {
  margin-bottom: 7px;
}

.project-package-row dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.project-package-row strong[data-package-status] {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--brand-dark);
  font-size: 12px;
  letter-spacing: 0;
}

.project-package-row strong[data-package-status="Confirmed"] {
  border-color: #4d836a;
  background: #e8f3ed;
  color: #174c36;
}

.project-package-row strong[data-package-status="Reported"] {
  border-color: #b38143;
  background: #fff3df;
  color: #68400e;
}

.project-package-row strong[data-package-status="Undisclosed"],
.project-package-row strong[data-package-status="Not evidenced"] {
  border-color: #a9afb5;
  background: #f1f3f4;
  color: #444b52;
}

.project-sector-map {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.25fr);
  gap: 28px;
  align-items: end;
  margin-top: 1px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.project-sector-map h2 {
  margin: 6px 0 8px;
  font-size: 25px;
}

.project-sector-map p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.project-sector-map .detail-nav {
  justify-content: flex-end;
  margin-top: 0;
}

.project-change-register {
  margin-top: 34px;
  border-top: 4px solid var(--brand-dark);
  border-bottom: 1px solid var(--line);
}

.project-change-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px 40px;
  padding: 28px 0;
}

.project-change-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.project-change-heading h2,
.project-change-heading p {
  margin: 0;
}

.project-change-heading h2 {
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1.12;
}

.project-change-context {
  display: grid;
  gap: 14px;
  align-content: start;
}

.project-change-context p {
  color: var(--muted);
  line-height: 1.65;
}

.project-change-list {
  border-top: 1px solid var(--line);
}

.project-change-event {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.project-change-event:last-child {
  border-bottom: 0;
}

.project-change-event time {
  color: var(--rust);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-change-event h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 21px;
}

.project-change-event p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-change-event .text-link {
  margin-top: 12px;
}

.detail-page > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.detail-brief-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.detail-brief-banner > div {
  padding: 28px;
}

.detail-brief-banner > div:first-child {
  background:
    linear-gradient(135deg, rgba(11, 91, 120, 0.1), rgba(184, 100, 42, 0.08)),
    var(--mist);
}

.detail-brief-banner h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.detail-brief-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-brief-status {
  display: grid;
  align-content: center;
  gap: 8px;
  background: var(--brand-dark);
  color: var(--white);
}

.detail-brief-status span {
  color: rgba(255, 213, 151, 0.9);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-brief-status strong {
  font-size: 28px;
  line-height: 1.08;
}

.detail-image-block {
  margin: 30px 0;
}

.detail-image-block .detail-article-image {
  margin: 0 0 10px;
}

.detail-image-block .image-credit {
  margin-bottom: 0;
}

.detail-image-block--diagram .detail-article-image {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.award-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1px;
  margin: 38px 0;
  background: var(--line);
}

.award-page-hero > div {
  padding: 34px;
  background: var(--brand-dark);
  color: var(--white);
}

.award-page-hero h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.award-page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.award-page-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--paper);
}

.detail-article-image {
  display: block;
  width: 100%;
  max-height: 560px;
  margin: 30px 0 10px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-credit {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.image-credit a {
  color: inherit;
}

.award-statement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.award-statement div {
  min-height: 150px;
  padding: 22px;
  background: var(--brand-dark);
  color: var(--white);
}

.award-statement span {
  display: block;
  margin-bottom: 14px;
  color: #ffd597;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-statement strong {
  display: block;
  font-size: 24px;
  line-height: 1.16;
}

.award-recipient-logo {
  display: block;
  width: min(100%, 150px);
  height: auto;
  padding: 12px;
  background: var(--white);
  object-fit: contain;
}

.institutional-logo {
  display: block;
  width: min(280px, 60vw);
  height: auto;
  margin: 28px 0 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

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

.detail-grid article,
.detail-cta {
  padding: 26px;
  background: var(--white);
}

.detail-grid h2,
.detail-cta h2 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.12;
}

.detail-grid p,
.detail-cta p {
  color: var(--muted);
  line-height: 1.56;
}

.detail-content-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-content-section h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.detail-content-section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.article-framework,
.article-case-matrix {
  margin-top: 42px;
}

.article-framework-grid,
.article-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.article-framework-grid li,
.article-case-grid article {
  min-width: 0;
  padding: 26px;
  background: var(--white);
}

.article-framework-grid li > span,
.article-case-status > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-framework-grid h3,
.article-case-grid h3 {
  margin: 9px 0 12px;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.18;
}

.article-framework-grid p,
.article-framework-grid small,
.article-case-grid dd {
  color: var(--muted);
  line-height: 1.55;
}

.article-framework-grid p {
  margin: 0 0 14px;
}

.article-framework-grid small {
  display: block;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.article-case-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-case-status strong {
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  color: var(--brand-dark);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-case-status strong[data-confidence="Reported"] {
  border-color: #d5a33c;
  color: #8a5a00;
}

.article-case-grid h3 a {
  color: inherit;
}

.article-case-grid dl {
  margin: 0;
}

.article-case-grid dl div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.article-case-grid dt {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-case-grid dd {
  margin: 0;
}

.performance-evidence-boundary {
  margin-top: 38px;
  padding: 30px 0;
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--line);
}

.performance-evidence-boundary h2,
.performance-metric-observations h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: 32px;
  line-height: 1.08;
}

.performance-evidence-boundary > p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.performance-evidence-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.performance-evidence-columns article {
  padding: 28px;
  background: var(--white);
}

.performance-evidence-columns article:first-child {
  border-top: 4px solid #2f7f68;
}

.performance-evidence-columns article:last-child {
  border-top: 4px solid var(--accent);
}

.performance-evidence-columns h2 {
  margin: 8px 0 16px;
  font-size: 25px;
  line-height: 1.14;
}

.performance-evidence-columns ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.performance-metric-observations {
  margin-top: 40px;
}

.performance-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
}

.performance-metric-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.performance-metric-grid span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-metric-grid h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.12;
}

.performance-metric-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.detail-source-list {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.detail-source-list h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.detail-source-list h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  margin-left: 8px;
  border: 1px solid rgba(11, 91, 120, 0.24);
  color: var(--brand);
  font-size: 0.82rem;
}

.detail-source-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-source-list li {
  display: grid;
  gap: 4px;
}

.detail-source-list a {
  color: var(--brand);
  font-weight: 800;
}

.detail-source-list span,
.detail-source-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.detail-cta {
  margin-top: 1px;
  border: 1px solid var(--line);
}

.detail-cta a:not(.button) {
  color: var(--brand);
  font-weight: 800;
}

.detail-cta > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 10px 10px 0 0;
}

.discovery-methodology {
  padding: 0;
}

.discovery-methodology > summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 58px 16px 26px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.discovery-methodology > summary::-webkit-details-marker {
  display: none;
}

.discovery-methodology > summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.discovery-methodology[open] > summary {
  border-bottom: 1px solid var(--line);
}

.discovery-methodology[open] > summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.discovery-methodology > summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.discovery-methodology-content {
  padding: 26px;
}

.discovery-methodology-content > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 10px 10px 0 0;
}

.project-source-monitoring,
.record-source-monitoring {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project-source-monitoring > strong,
.record-source-monitoring > strong {
  color: var(--rust);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-source-monitoring .detail-nav,
.record-source-monitoring .detail-nav {
  gap: 10px 18px;
  margin-top: 8px;
}

.record-source-monitoring--collapsible > summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding-right: 30px;
  cursor: pointer;
  list-style: none;
}

.record-source-monitoring--collapsible > summary::-webkit-details-marker {
  display: none;
}

.record-source-monitoring--collapsible > summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.record-source-monitoring--collapsible > summary span {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.record-source-monitoring--collapsible > summary strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.record-source-monitoring--collapsible[open] > summary {
  margin-bottom: 10px;
}

.record-source-monitoring--collapsible[open] > summary::after {
  transform: translateY(-35%) rotate(225deg);
}

@media (max-width: 600px) {
  .detail-cta > a {
    width: 100%;
    margin-right: 0;
  }

  .detail-cta > a:not(.button) {
    min-height: 32px;
  }

  .discovery-methodology > summary {
    min-height: 52px;
    padding: 14px 48px 14px 18px;
  }

  .discovery-methodology > summary::after {
    right: 20px;
  }

  .discovery-methodology-content {
    padding: 18px;
  }

  .discovery-methodology-content > a {
    width: 100%;
    margin-right: 0;
  }

  .discovery-methodology-content > a:not(.button) {
    min-height: 32px;
  }

  .record-source-monitoring--collapsible > summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

.data-product-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.data-product-panel > div,
.field-dictionary {
  margin: 0;
  padding: 28px;
  background: var(--paper);
}

.data-product-panel h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.08;
}

.data-product-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.field-dictionary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.field-dictionary div {
  padding: 18px;
  background: var(--white);
}

.field-dictionary dt {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-weight: 850;
}

.field-dictionary dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.data-schema-section {
  scroll-margin-top: 18px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.data-schema-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
}

.data-schema-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
}

.data-schema-heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.data-schema-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.data-schema-fields li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 11px 14px;
  background: var(--white);
}

.data-schema-fields span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.data-schema-fields code {
  overflow-wrap: anywhere;
  color: var(--brand-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 780;
}

.data-schema-return {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 800;
}

.record-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.record-lifecycle article {
  min-height: 166px;
  padding: 20px;
  background: var(--white);
}

.record-lifecycle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.record-lifecycle strong {
  display: block;
  color: var(--brand-dark);
  font-size: 19px;
}

.record-lifecycle p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.utility-evidence-ladder {
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 40px;
}

.utility-position-grid .detail-record {
  min-height: 220px;
}

.recognition-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.recognition-process > div {
  padding: 30px;
  background: var(--brand-dark);
  color: var(--white);
}

.recognition-process h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.03;
}

.recognition-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.recognition-process .eyebrow {
  color: #8ed9e1;
}

.recognition-process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.recognition-process li {
  min-height: 180px;
  padding: 24px;
  background: var(--white);
}

.recognition-process strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 24px;
}

.recognition-process span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-architecture {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.trust-architecture > div,
.trust-architecture article {
  padding: 28px;
}

.trust-architecture > div {
  grid-row: span 2;
  background: var(--brand-dark);
  color: var(--white);
}

.trust-architecture article {
  background: var(--white);
}

.trust-architecture h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.trust-architecture h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 23px;
}

.trust-architecture p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.trust-architecture > div p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-architecture .eyebrow {
  color: #8ed9e1;
}

.trust-architecture span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.correction-policy {
  margin-top: 1px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.correction-policy-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 24px;
}

.correction-policy-heading h2 {
  max-width: 680px;
  margin: 6px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.correction-policy-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.correction-policy ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.correction-policy li {
  min-height: 160px;
  padding: 20px;
  background: var(--white);
}

.correction-policy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

.correction-policy span {
  color: var(--muted);
  line-height: 1.5;
}

.governance-principles article {
  border-top: 4px solid var(--brand);
}

.governance-standards,
.governance-responsibility {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.governance-section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  column-gap: 40px;
  align-items: end;
}

.governance-section-heading .eyebrow {
  grid-column: 1;
  margin: 0 0 8px;
}

.governance-section-heading h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.governance-section-heading > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.governance-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 28px;
}

.governance-standard-group {
  min-width: 0;
  border-top: 3px solid var(--brand-dark);
}

.governance-standard-group h3 {
  margin: 0;
  padding: 18px 0 4px;
  color: var(--brand-dark);
  font-size: 21px;
}

.governance-standard-group .detail-records {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 10px;
}

.governance-standard-group .detail-record {
  display: grid;
  grid-template-columns: minmax(145px, 0.55fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 22px;
  align-items: start;
  min-height: 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.governance-standard-group .detail-record > span {
  grid-column: 1;
  grid-row: 1;
}

.governance-standard-group .detail-record h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 8px 0 0;
  font-size: 20px;
}

.governance-standard-group .detail-record p,
.governance-standard-group .detail-record small {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.governance-responsibility .detail-records {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.governance-appointment-note {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--paper);
  color: var(--muted);
  line-height: 1.58;
}

.detail-filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(128px, 0.75fr));
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  background: var(--brand-dark);
}

.detail-filter-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.detail-filter-panel input,
.detail-filter-panel select {
  width: 100%;
  min-height: 44px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.detail-filter-panel option {
  color: var(--ink);
}

.resource-filter-panel {
  grid-template-columns: minmax(220px, 1.6fr) minmax(180px, 0.8fr);
}

#resource-library .detail-section-title {
  margin-top: 28px;
}

#resource-library .detail-records {
  margin-top: 18px;
}

.filter-panel-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

.filter-panel-status button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0 13px;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.filter-panel-status button:hover:not(:disabled),
.filter-panel-status button:focus-visible:not(:disabled) {
  background: var(--white);
  color: var(--brand-dark);
}

.filter-panel-status button:disabled {
  opacity: 0.42;
  cursor: default;
}

.awards-filter-panel {
  margin-top: 18px;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--brand);
  font-weight: 800;
}

.detail-count {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-universe {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.75fr));
  margin: 28px 0 20px;
  border-top: 2px solid var(--brand-dark);
  border-bottom: 1px solid var(--line);
}

.project-universe-intro,
.project-universe article {
  min-width: 0;
  padding: 24px;
}

.project-universe-intro {
  padding-left: 0;
}

.project-universe article {
  border-left: 1px solid var(--line);
}

.project-universe .eyebrow {
  margin-bottom: 8px;
}

.project-universe h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1.12;
}

.project-universe p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.project-universe article strong {
  display: block;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
}

.project-universe article span {
  display: block;
  margin-top: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-universe article .text-link {
  display: inline-block;
  margin-top: 18px;
}

.search-workspace {
  margin-top: 32px;
  padding: 28px 0 32px;
  border-top: 2px solid var(--brand-dark);
  border-bottom: 1px solid var(--line);
}

.search-workspace + .secondary-site-nav {
  margin: 24px 0 32px;
}

.search-workspace-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 32px;
  align-items: end;
}

.search-workspace-heading h2 {
  margin: 6px 0 0;
  color: var(--brand-dark);
  font-size: 32px;
}

.search-workspace-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-search {
  max-width: 820px;
  margin: 28px 0 14px;
}

.search-workspace .detail-search {
  max-width: none;
  margin-top: 24px;
}

.detail-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.detail-search input {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font: inherit;
}

.search-discovery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  background: var(--line);
}

.search-discovery a {
  min-height: 128px;
  padding: 22px;
  background: var(--paper);
}

.search-discovery span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-discovery strong {
  color: var(--brand-dark);
  font-size: 24px;
}

.search-tools {
  display: grid;
  grid-template-columns: minmax(220px, 340px);
  gap: 12px;
  margin: 14px 0 0;
}

.search-tools label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-tools select {
  border: 1px solid var(--line);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.search-control-row {
  display: flex;
  align-items: end;
  gap: 18px;
}

.search-reset {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 4px;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.search-reset:disabled {
  border-bottom-color: transparent;
  color: var(--muted);
  cursor: default;
  opacity: 0.55;
}

.search-results:empty {
  display: none;
}

.search-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.search-pagination:has(.search-more[hidden]) {
  display: none;
}

.search-more {
  min-width: min(100%, 320px);
}

.search-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-match-note {
  max-width: 760px;
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  line-height: 1.55;
}

.search-summary button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
}

.search-summary strong {
  color: var(--accent);
}

.search-summary span {
  font-weight: 750;
}

.detail-section-title {
  margin: 44px 0 16px;
  font-size: 30px;
}

.detail-section-copy {
  max-width: 720px;
  margin: -6px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-records {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.record-list-actions {
  display: flex;
  justify-content: center;
  margin: 24px 0 10px;
}

.record-list-actions[hidden] {
  display: none;
}

.record-list-actions .button {
  min-width: 220px;
  min-height: 44px;
}

#discovery-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.discovery-view-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 620px);
  margin-top: 24px;
  border: 1px solid var(--brand);
  background: var(--white);
}

.discovery-view-switch button {
  min-height: 44px;
  border: 0;
  padding: 10px 16px;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.discovery-view-switch button + button {
  border-left: 1px solid var(--brand);
}

.discovery-view-switch button[aria-pressed="true"] {
  background: var(--brand);
  color: var(--white);
}

.discovery-view-switch button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.discovery-record {
  min-height: 240px;
}

.discovery-record h2,
.discovery-record small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.discovery-family-record {
  min-height: 300px;
}

.discovery-record h2 {
  -webkit-line-clamp: 3;
}

.discovery-record small {
  margin-top: 12px;
  -webkit-line-clamp: 4;
}

.project-tracker-page .record-list-actions {
  align-items: center;
  gap: 12px;
}

.project-tracker-page .record-list-actions button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  font: inherit;
  font-weight: 800;
}

.project-tracker-page .record-list-actions button:disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.detail-record {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.directory-record {
  padding: 0;
  overflow: hidden;
}

.directory-record-media {
  display: block;
  background: var(--mist);
}

.directory-record-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.regional-collection-section,
.sector-collection-section,
.discovery-hub-section {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.regional-collection-section .section-heading h2,
.sector-collection-section .section-heading h2,
.discovery-hub-section .section-heading h2 {
  font-size: 32px;
}

.regional-collection-section .section-heading > span,
.sector-collection-section .section-heading > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.regional-collection-section .detail-records,
.sector-collection-section .detail-records,
.discovery-hub-section .detail-records {
  margin-top: 0;
}

.discovery-hub-section .detail-section-copy {
  margin-top: -8px;
  margin-bottom: 22px;
}

.hub-record-card .directory-record-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.hub-record-card .directory-record-body small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

#detail-market-sector-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#detail-market-sector-list .directory-record-body {
  padding: 16px 18px 18px;
}

#detail-market-sector-list .directory-record-body p {
  -webkit-line-clamp: 3;
}

#detail-market-sector-list .directory-record-body small {
  margin-top: 10px;
  -webkit-line-clamp: 2;
}

.hub-signal-records .detail-record {
  min-height: 0;
}

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

.hub-signal-records .detail-record {
  padding: 18px;
}

.hub-signal-records .detail-record h2 {
  margin: 8px 0 6px;
  font-size: 30px;
}

.hub-signal-records .detail-record p {
  margin-bottom: 0;
  font-size: 13px;
}

.regional-publication-card .directory-record-body p,
.regional-company-card .directory-record-body p,
.sector-publication-card .directory-record-body p,
.sector-company-card .directory-record-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.directory-record-body {
  padding: 20px 22px 22px;
}

.directory-record-body > p,
.directory-record-body > small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.directory-record-body > p {
  -webkit-line-clamp: 6;
}

.directory-record-body > small {
  margin-top: 14px;
  -webkit-line-clamp: 4;
}

#detail-project-list .detail-record h2,
#detail-project-list .detail-record > small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

#detail-project-list .detail-record h2 {
  -webkit-line-clamp: 3;
}

#detail-project-list .detail-record > small {
  -webkit-line-clamp: 4;
}

.detail-record.recognized-record {
  border-color: rgba(184, 100, 42, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.9), rgba(255, 255, 255, 1) 42%),
    var(--white);
}

.record-logo {
  display: block;
  width: 76px;
  height: auto;
  margin: 14px 0 6px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.detail-record span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-record h2 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.16;
}

.detail-record p,
.detail-record small {
  color: var(--muted);
  line-height: 1.55;
}

.detail-record .project-change-note {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.detail-record .project-change-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-record .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 800;
}

.source-register-page {
  max-width: 1180px;
}

.source-register-region-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-register-region-summary article {
  min-height: 170px;
}

.source-register-category-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-register-region {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.source-register-region .section-heading {
  align-items: end;
}

.source-register-region .section-heading h2 {
  font-size: 32px;
}

.source-register-region .section-heading > span {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
}

.source-register-list {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.source-register-entry {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.source-register-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.source-register-summary::-webkit-details-marker {
  display: none;
}

.source-register-summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
}

.source-register-entry[open] .source-register-summary::after {
  content: "-";
}

.source-register-summary:hover,
.source-register-summary:focus-visible {
  background: var(--mist);
}

.source-register-heading {
  display: block;
}

.source-register-heading small,
.source-register-heading strong,
.source-register-heading > span {
  display: block;
}

.source-register-heading small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-register-heading strong {
  max-width: 900px;
  margin-top: 7px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.source-register-heading > span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.source-register-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  padding: 4px 76px 28px 22px;
}

.source-register-body h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 15px;
}

.source-register-body p,
.source-register-body li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.source-register-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-register-terms li {
  color: var(--ink);
}

.source-register-links {
  margin: 0;
  padding-left: 22px;
}

.source-register-links li + li {
  margin-top: 12px;
}

.source-register-links a {
  color: var(--brand);
  overflow-wrap: anywhere;
}

.source-register-route-meta,
.source-register-route-fallback {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.source-register-route-meta {
  color: var(--ink);
  font-weight: 700;
}

.source-register-route-fallback {
  padding-left: 10px;
  border-left: 2px solid var(--signal);
}

.source-register-route-fallback a {
  font-weight: 700;
}

.source-register-record-note {
  margin: 0 0 10px;
}

.source-register-record-groups {
  columns: 2;
  column-gap: 24px;
}

.source-register-record-group {
  min-width: 0;
  margin-bottom: 22px;
  break-inside: avoid;
}

.source-register-record-group h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.source-register-record-group h4 span {
  color: var(--muted);
  font-size: 0.78rem;
}

.source-register-records {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-register-records li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.source-register-records li:first-child {
  border-top: 0;
}

.source-register-records a {
  color: var(--brand);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.project-change-log-page > h1 {
  max-width: 860px;
}

.project-change-log-stats article {
  min-height: 132px;
}

.project-change-log-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-change-log-filter-panel {
  grid-template-columns: minmax(220px, 1.35fr) repeat(2, minmax(150px, 0.8fr));
}

.project-change-log-list {
  margin-top: 34px;
  border-top: 4px solid var(--brand-dark);
}

.project-change-log-entry {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.project-change-log-entry[hidden] {
  display: none;
}

.project-change-log-entry > time {
  color: var(--rust);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-change-log-body {
  min-width: 0;
}

.project-change-log-meta {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.project-change-log-entry h2,
.project-change-log-entry h3,
.project-change-log-entry p {
  margin-top: 0;
}

.project-change-log-entry h2 {
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.16;
}

.project-change-log-entry h2 a {
  color: var(--brand-dark);
}

.project-change-log-entry h2 a:hover,
.project-change-log-entry h2 a:focus-visible {
  color: var(--accent);
}

.project-change-log-entry h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.project-change-log-entry h3 + p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-change-log-entry .text-link {
  margin-top: 13px;
}

.project-change-log-more {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

.project-change-log-more .button[hidden] {
  display: none;
}

.membership-use-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.membership-use-case {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.membership-use-case span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-use-case h2 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.15;
}

.membership-use-case p,
.membership-use-case small {
  color: var(--muted);
  line-height: 1.55;
}

.membership-use-case small {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.membership-use-case .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.report-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1px;
  margin: 36px 0 1px;
  background: var(--line);
}

.report-product-hero > div {
  padding: 30px;
  background: var(--brand-dark);
  color: var(--white);
}

.report-product-hero h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.report-product-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.58;
}

.report-product-hero .report-product-meta {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 760;
}

.report-product-actions {
  margin: 18px 0;
  border-color: rgba(255, 255, 255, 0.24);
}

.report-product-actions a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.report-product-actions a + a {
  border-color: rgba(255, 255, 255, 0.24);
}

.report-product-actions a:hover,
.report-product-actions a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.report-product-hero .eyebrow {
  color: #8ed9e1;
}

.reports-page .detail-page h1 {
  font-size: clamp(40px, 3.8vw, 46px);
}

.reports-page .detail-page > p:not(.eyebrow):not(.detail-count) {
  font-size: 18px;
  line-height: 1.5;
}

.reports-page .editorial-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.45;
}

.reports-page .report-product-hero {
  margin-top: 24px;
}

.reports-page .report-product-hero h2 {
  font-size: 36px;
  line-height: 1.08;
}

.report-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-content: stretch;
  background: var(--brand) !important;
}

.report-indicators span {
  display: flex;
  align-items: flex-end;
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  line-height: 1.2;
}

.report-composition {
  margin: 28px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-composition-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.report-composition-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
}

.report-composition-heading > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.report-composition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-composition-panel {
  min-width: 0;
  padding: 24px 28px 28px 0;
}

.report-composition-panel + .report-composition-panel {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.report-composition-panel h3 {
  margin: 0 0 20px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.2;
}

.report-bar-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-bar-row {
  min-width: 0;
}

.report-bar-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 7px;
}

.report-bar-heading > span {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.report-bar-heading strong {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--brand-dark);
  font-size: 17px;
}

.report-bar-heading small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.report-bar-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: var(--mist);
}

.report-bar-fill {
  display: block;
  width: var(--report-bar-share);
  min-width: 8px;
  height: 100%;
  background: var(--brand);
}

.report-composition-panel:nth-child(2) .report-bar-fill {
  background: var(--accent);
}

.report-outline {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.report-outline h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.report-outline ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: report-step;
  background: var(--line);
}

.report-outline li {
  counter-increment: report-step;
  min-height: 126px;
  padding: 20px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 750;
  line-height: 1.45;
}

.report-outline li::before {
  content: counter(report-step, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.report-figures {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.report-figures > div {
  padding: 30px;
}

.report-figures > div:first-child {
  background: var(--brand-dark);
  color: var(--white);
}

.report-figures h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.report-figures p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.report-figures .eyebrow {
  color: #8ed9e1;
}

.report-figure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 !important;
  background: var(--line);
}

.report-figure-grid article {
  min-height: 248px;
  padding: 24px;
  background: var(--white);
}

.report-figure-grid article > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.report-figure-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-figure-grid strong {
  color: var(--brand-dark);
  font-size: 46px;
  line-height: 0.9;
}

.report-meter {
  height: 10px;
  margin: 28px 0 18px;
  background: var(--mist);
  overflow: hidden;
}

.report-meter span {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--accent);
}

.report-figure-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.report-figure-grid small,
.report-evidence-records small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.report-findings,
.report-evidence-records {
  margin-top: 18px;
}

.knowledge-page .detail-brand,
.knowledge-topic-page .detail-brand {
  margin-bottom: 34px;
}

.knowledge-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px 0;
}

.knowledge-hub-scope {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 36px;
  align-items: end;
  margin-top: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.knowledge-hub-scope h2 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1.1;
}

.knowledge-hub-scope > div > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.knowledge-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.knowledge-hub-actions .text-link {
  color: var(--brand);
  font-weight: 800;
}

.knowledge-topic {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-topic-grid.is-rendered .knowledge-topic {
  min-height: 0;
  grid-template-rows: 180px 1fr;
  align-content: stretch;
  padding: 0;
  overflow: hidden;
}

.knowledge-topic-media {
  display: block;
  min-width: 0;
  background-position: center;
  background-size: cover;
}

.knowledge-topic-copy {
  display: grid;
  align-content: start;
  padding: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.knowledge-topic-copy small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.knowledge-collection {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.knowledge-collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: end;
}

.knowledge-collection-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.knowledge-collection-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.knowledge-collection-heading dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.knowledge-collection-heading dl div {
  min-width: 0;
  padding: 16px;
  background: var(--mist);
}

.knowledge-collection-heading dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.knowledge-collection-heading dd {
  margin: 8px 0 0;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.knowledge-editorial-lens {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 28px;
  margin-top: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.knowledge-editorial-lens h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.knowledge-editorial-lens dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 0;
}

.knowledge-editorial-lens dl div {
  min-width: 0;
}

.knowledge-editorial-lens dt {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 850;
}

.knowledge-editorial-lens dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.knowledge-collection-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.knowledge-collection-toolbar > label {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 850;
}

.knowledge-collection-controls {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.knowledge-collection-search-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.knowledge-collection-toolbar input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 47, 66, 0.28);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.knowledge-collection-toolbar input[type="search"]:focus-visible {
  outline: 3px solid rgba(16, 132, 169, 0.24);
  outline-offset: 2px;
  border-color: var(--accent);
}

.knowledge-collection-toolbar output {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.knowledge-type-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.knowledge-type-filter legend {
  float: left;
  min-width: 76px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.knowledge-type-options {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 300px;
  border: 1px solid rgba(8, 47, 66, 0.28);
  background: #fff;
}

.knowledge-type-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.knowledge-type-options label + label {
  border-left: 1px solid rgba(8, 47, 66, 0.2);
}

.knowledge-type-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.knowledge-type-options span {
  display: grid;
  min-height: 36px;
  padding: 7px 10px;
  place-items: center;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.knowledge-type-options input:checked + span {
  background: var(--brand-dark);
  color: #fff;
}

.knowledge-type-options input:focus-visible + span {
  outline: 3px solid rgba(16, 132, 169, 0.3);
  outline-offset: -3px;
}

.knowledge-collection-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.knowledge-collection-block > h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.knowledge-collection-list {
  display: grid;
  gap: 10px;
}

.knowledge-collection-list .detail-record {
  min-height: 0;
}

.knowledge-collection-list .detail-record h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.knowledge-collection-list .detail-record small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.knowledge-filter-empty {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.knowledge-topic:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 91, 120, 0.36);
  box-shadow: var(--shadow);
}

.knowledge-topic > span:not(.knowledge-topic-copy),
.knowledge-topic-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-topic h2 {
  margin: 12px 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.knowledge-topic p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.topic-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  margin: 34px 0 0;
  padding: 32px;
  color: var(--white);
  background-color: var(--brand-dark);
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), var(--topic-image);
  background-position: center;
  background-size: cover;
}

.topic-hero h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.topic-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.topic-image-credit {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: min(70%, 440px);
  padding: 7px 9px;
  background: rgba(5, 33, 46, 0.78);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-section .text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 1300px) {
  .topbar .actions > a:first-child {
    display: none;
  }
}

@media (max-width: 1100px) {
  .topbar,
  .editorial-front,
  .front-lead-story,
  .desk-panel,
  .operations-pulse,
  .trust-controls,
  .award-page-hero,
  .about-band,
  .performance-strip,
  .recognition-news-grid,
  .method-section,
  .source-map,
  .section-grid,
  .homepage-discovery,
  .events-section,
  .member-products,
  .taxonomy-section,
  .membership,
  .faq-section,
  .operating-structure,
  .governance-contact {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .topbar .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .topbar .actions {
    grid-column: 2;
    grid-row: 1;
  }

  .front-lead-story > img {
    min-height: 320px;
    max-height: 420px;
  }

  .front-lead-story--diagram > img {
    padding: 12px;
  }

  .front-lead-story--landscape,
  .front-lead-story--landscape-cover {
    grid-template-rows: auto;
  }

  .front-lead-story--landscape > img,
  .front-lead-story--landscape-cover > img {
    height: 200px;
    min-height: 200px;
    max-height: 220px;
  }

  .actions {
    justify-content: flex-start;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-group {
    min-width: 150px;
  }

  .nav-group-links {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-group:hover .nav-group-links,
  .nav-group:focus-within .nav-group-links {
    display: grid;
  }

  .product-grid,
  .desk-panel,
  .trust-grid,
  .knowledge-grid,
  .story-list,
  .stats-strip,
  .market-strip,
  .method-steps,
  .source-grid,
  .region-grid,
  .directory-grid,
  .structure-grid,
  .taxonomy-grid,
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  #detail-market-sector-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .report-catalogue .report-preview-card,
  .report-catalogue .report-preview-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-card {
    min-height: 230px;
  }

  .knowledge-card span,
  .knowledge-card h3 {
    overflow-wrap: anywhere;
  }

  .detail-page {
    padding: 30px 18px 44px;
  }

  .detail-brand {
    margin-bottom: 24px;
  }

  .secondary-site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin: -8px -18px 28px;
    padding: 8px 18px;
    overflow: visible;
    border-right: 0;
    border-left: 0;
  }

  .search-workspace + .secondary-site-nav {
    margin: 24px -18px 28px;
  }

  .secondary-site-nav a {
    justify-content: center;
    min-height: 40px;
    min-width: 0;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .detail-page h1 {
    font-size: clamp(34px, 9.5vw, 38px);
    line-height: 1.06;
  }

  .project-tracker-page .detail-brand,
  .directory-page .detail-brand,
  .data-services-page .detail-brand,
  .membership-page .detail-brand,
  .resources-page .detail-brand,
  .source-register-page .detail-brand,
  .reports-page .detail-brand {
    margin-bottom: 16px;
  }

  .project-tracker-page .secondary-site-nav,
  .directory-page .secondary-site-nav,
  .data-services-page .secondary-site-nav,
  .membership-page .secondary-site-nav,
  .source-register-page .secondary-site-nav,
  .reports-page .secondary-site-nav {
    margin-bottom: 18px;
  }

  .project-tracker-page .detail-page h1,
  .directory-page .detail-page h1,
  .data-services-page .detail-page h1,
  .membership-page .detail-page h1,
  .resources-page .detail-page h1,
  .source-register-page.detail-page h1,
  .reports-page .detail-page h1 {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.08;
  }

  .project-tracker-page .detail-page > p:not(.eyebrow):not(.detail-count),
  .directory-page .detail-page > p:not(.eyebrow):not(.detail-count),
  .data-services-page .detail-page > p:not(.eyebrow):not(.detail-count),
  .membership-page .detail-page > p:not(.eyebrow):not(.detail-count),
  .resources-page .detail-page > p:not(.eyebrow):not(.detail-count),
  .source-register-page.detail-page > p:not(.eyebrow):not(.detail-count),
  .reports-page .detail-page > p:not(.eyebrow):not(.detail-count) {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.5;
  }

  .membership-page .editorial-note {
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.35;
  }

  .membership-page #public-research-workflow-title {
    margin-top: 8px;
  }

  .reports-page .editorial-note {
    display: none;
  }

  .reports-page .detail-page > p:not(.eyebrow):not(.detail-count) {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .reports-page .report-product-hero {
    margin-top: 0;
  }

  .reports-page .report-product-hero > div {
    padding: 18px;
  }

  .reports-page .report-product-hero h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .reports-page .report-product-hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .reports-page .report-product-actions {
    margin: 8px -18px 16px;
  }

  .reports-page .report-indicators span {
    min-height: 88px;
    padding: 14px;
    font-size: 14px;
  }

  .data-services-page .detail-grid {
    margin-top: 24px;
  }

  .data-services-page .detail-grid article {
    padding: 18px;
  }

  .data-services-page .detail-grid h2 {
    font-size: 22px;
  }

  .data-services-page .detail-grid p {
    font-size: 16px;
    line-height: 1.5;
  }

  .project-tracker-page .publication-meta,
  .directory-page .publication-meta,
  .source-register-page .publication-meta,
  .project-change-log-page .publication-meta {
    gap: 6px 12px;
    margin: 14px 0;
    padding: 10px 0;
    font-size: 13px;
  }

  .project-change-log-actions {
    display: grid;
    gap: 4px;
    margin: 0 0 18px;
  }

  .project-change-log-actions .button {
    width: 100%;
  }

  .directory-page .detail-count {
    margin: 0 0 12px;
    padding: 7px 10px;
    font-size: 15px;
    line-height: 1.4;
  }

  .project-tracker-page .detail-count {
    display: none;
  }

  .project-universe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 8px;
  }

  .project-universe-intro {
    display: none;
  }

  .project-universe article {
    padding: 14px 10px 12px;
    border-left: 0;
  }

  .project-universe article + article {
    border-left: 1px solid var(--line);
  }

  .project-universe article p {
    display: none;
  }

  .project-universe article strong {
    font-size: 32px;
  }

  .project-universe article span {
    font-size: 11px;
    line-height: 1.3;
  }

  .project-universe article .text-link {
    margin-top: 10px;
    font-size: 0;
  }

  .project-universe article .text-link::after {
    content: "Verified index";
    font-size: 12px;
  }

  .project-universe article:last-child .text-link::after {
    content: "Discovery index";
  }

  .project-tracker-page .project-filter-panel,
  .directory-page .directory-filter-panel {
    margin-top: 12px;
  }

  .source-register-page .source-register-filter-panel {
    margin-top: 12px;
  }

  .source-register-page .source-register-region {
    margin-top: 24px;
    padding-top: 18px;
  }

  .utility-bar,
  .topbar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .utility-bar,
  .utility-bar nav,
  .actions,
  .site-footer {
    align-items: flex-start;
  }

  .utility-bar {
    display: none;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

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

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark strong {
    font-size: 29px;
  }

  .brand-wordmark span {
    display: none;
  }

  .brand-wordmark::after {
    content: "Marine works intelligence";
    color: var(--brand-dark);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .actions {
    gap: 8px;
    min-width: 0;
  }

  .actions .button {
    padding: 0 12px;
  }

  .editorial-front {
    padding: 16px 18px 24px;
  }

  .front-lead-copy {
    order: 2;
    padding: 22px 24px 24px;
  }

  .front-lead-copy h1 {
    font-size: 32px;
  }

  .front-lead-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .front-lead-story > img {
    order: 1;
    min-height: 200px;
    max-height: 220px;
  }

  .actions > a:first-child {
    display: none;
  }

  .topbar .actions .button-secondary {
    display: none;
  }

  .main-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
  }

  .nav-group {
    min-width: 0;
  }

  .nav-group-label {
    padding: 11px 4px;
    font-size: 12px;
  }

  .nav-group-links,
  .nav-group:hover .nav-group-links,
  .nav-group:focus-within .nav-group-links {
    display: none;
  }

  .project-table {
    overflow-x: visible;
    border: 0;
  }

  .project-head {
    display: none;
  }

  #project-list {
    display: grid;
    gap: 10px;
  }

  .project-row:not(.project-head) {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    border: 1px solid var(--line);
  }

  .project-row:not(.project-head) span {
    min-width: 0;
    padding: 11px 12px;
  }

  .project-row:not(.project-head) span:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
    background: var(--mist);
  }

  .project-row:not(.project-head) span::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .project-row:not(.project-head) span:first-child::before {
    display: none;
  }

  .project-empty {
    min-width: 0;
    border: 1px solid var(--line);
  }

  .stats-strip,
  .trust-grid,
  .product-grid,
  .method-steps,
  .source-grid,
  .feature-grid,
  .story-list,
  .market-strip,
  .coverage-band,
  .region-grid,
  .directory-grid,
  .structure-grid,
  .taxonomy-grid,
  .report-grid,
  .membership-tiers {
    grid-template-columns: 1fr;
  }

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

  .about-band,
  .operations-pulse,
  .trust-controls,
  .product-grid,
  .method-section,
  .source-map,
  .section-grid,
  .homepage-discovery,
  .market-board,
  .content-band,
  .coverage-band,
  .regions-section,
  .directory-section,
  .member-products,
  .taxonomy-section,
  .reports-section,
  .events-section,
  .membership,
  .faq-section,
  .operating-structure,
  .governance-contact {
    padding: 34px 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .homepage-discovery {
    gap: 34px;
  }

  .homepage-research-panel {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .homepage-region-index {
    gap: 0 16px;
  }

  .homepage-region-link {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .homepage-region-link span {
    text-align: left;
  }

  #intelligence .section-heading {
    gap: 8px;
  }

  #intelligence .section-heading > a {
    align-self: flex-start;
  }

  .filters {
    justify-content: flex-start;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-brief-banner {
    grid-template-columns: 1fr;
  }

  .performance-evidence-columns,
  .performance-metric-grid {
    grid-template-columns: 1fr;
  }

  .performance-metric-grid article {
    min-height: 0;
  }

  .brief-comparison-grid,
  .article-framework-grid,
  .article-case-grid,
  .decision-read,
  .project-anatomy,
  .project-package-heading,
  .project-package-row,
  .project-sector-map {
    grid-template-columns: 1fr;
  }

  .project-package-row dl {
    grid-template-columns: 1fr;
  }

  .project-sector-map .detail-nav {
    justify-content: flex-start;
  }

  .project-change-heading,
  .project-change-event {
    grid-template-columns: 1fr;
  }

  .project-change-heading {
    gap: 12px;
  }

  .project-change-event {
    gap: 10px;
  }

  .data-product-panel,
  .field-dictionary,
  .data-schema-heading,
  .data-schema-fields,
  .record-lifecycle,
  .recognition-process,
  .recognition-process ol,
  .trust-architecture,
  .correction-policy-heading,
  .correction-policy ol,
  .governance-section-heading,
  .governance-standard-grid,
  .detail-filter-panel,
  .report-product-hero,
  .report-indicators,
  .report-composition-heading,
  .report-composition-grid,
  .report-outline ol,
  .report-figures,
  .report-figure-grid {
    grid-template-columns: 1fr;
  }

  .trust-architecture > div {
    grid-row: auto;
  }

  .governance-section-heading .eyebrow,
  .governance-section-heading h2,
  .governance-section-heading > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .governance-section-heading > p:not(.eyebrow) {
    margin-top: 14px;
  }

  .governance-standard-grid {
    gap: 28px;
  }

  .governance-standard-group .detail-record {
    grid-template-columns: minmax(100px, 0.4fr) minmax(0, 1fr);
    column-gap: 14px;
    padding: 15px 0;
  }

  .governance-responsibility .detail-records {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .governance-responsibility .detail-record {
    display: grid;
    grid-template-columns: minmax(100px, 0.4fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    min-height: 0;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .governance-responsibility .detail-record > span {
    grid-column: 1;
    grid-row: 1;
  }

  .governance-responsibility .detail-record h2 {
    grid-column: 1;
    grid-row: 2;
    margin: 8px 0 0;
    font-size: 19px;
  }

  .governance-responsibility .detail-record p {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .correction-policy li {
    min-height: 0;
    padding: 18px;
  }

  .report-composition-heading {
    gap: 16px;
  }

  .report-composition-panel,
  .report-composition-panel + .report-composition-panel {
    padding: 22px 0;
  }

  .report-composition-panel + .report-composition-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .source-register-region-summary,
  .source-register-category-summary,
  .source-register-body {
    grid-template-columns: 1fr;
  }

  .source-register-region .section-heading {
    align-items: flex-start;
  }

  .source-register-region .section-heading > span {
    max-width: none;
    text-align: left;
  }

  .source-register-summary {
    gap: 14px;
    min-height: 104px;
    padding: 18px 16px;
  }

  .source-register-heading strong {
    font-size: 18px;
  }

  .source-register-body {
    gap: 8px;
    padding: 0 16px 24px;
  }

  .source-register-record-groups {
    columns: 1;
  }

  .project-change-log-entry {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-change-log-stats article {
    min-height: 0;
  }

  .project-change-log-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .award-statement {
    grid-template-columns: 1fr;
  }

  .detail-records {
    grid-template-columns: 1fr;
  }

  #discovery-list {
    grid-template-columns: 1fr;
  }

  #detail-market-sector-list {
    grid-template-columns: 1fr;
  }

  #detail-market-sector-list .directory-record-media img {
    aspect-ratio: 2 / 1;
  }

  #detail-market-sector-list .directory-record-body {
    padding: 14px 16px 16px;
  }

  #detail-market-sector-list .directory-record-body h2 {
    margin: 7px 0 5px;
    font-size: 20px;
  }

  #detail-market-sector-list .directory-record-body p {
    display: none;
  }

  #detail-market-sector-list .directory-record-body small {
    margin-top: 8px;
    -webkit-line-clamp: 2;
  }

  .membership-use-cases {
    grid-template-columns: 1fr;
  }

  .knowledge-topic-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-hub-scope {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .knowledge-hub-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .topic-hero {
    padding-top: 96px;
  }

  .knowledge-collection-heading,
  .knowledge-collection-columns,
  .knowledge-collection-toolbar,
  .knowledge-editorial-lens,
  .knowledge-editorial-lens dl {
    grid-template-columns: 1fr;
  }

  .knowledge-collection-heading dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-collection-search-row {
    align-items: stretch;
    flex-direction: column;
  }

  .knowledge-collection-toolbar output {
    white-space: normal;
  }

  .knowledge-type-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .knowledge-type-filter legend {
    float: none;
  }

  .knowledge-type-options {
    width: 100%;
    min-width: 0;
  }

  .event-card p {
    grid-column: auto;
  }

  .signup div {
    flex-direction: column;
  }

  .tracker-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .tracker-controls input,
  .tracker-controls select {
    min-width: 0;
    width: 100%;
  }

  .detail-search div {
    grid-template-columns: 1fr;
  }

  .search-workspace-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-workspace-heading h2 {
    font-size: 28px;
  }

  .search-control-row {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .search-tools {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-reset {
    align-self: flex-start;
  }

  .regional-collection-section .section-heading,
  .sector-collection-section .section-heading,
  .discovery-hub-section .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .regional-collection-section .section-heading h2,
  .sector-collection-section .section-heading h2,
  .discovery-hub-section .section-heading h2 {
    font-size: 28px;
  }

  .regional-collection-section .section-heading > span,
  .sector-collection-section .section-heading > span {
    text-align: left;
  }

  .search-discovery {
    grid-template-columns: 1fr;
  }

  .desk-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 34px 18px;
  }

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

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

  .stats-strip article {
    padding: 18px;
  }

  .stats-strip strong {
    font-size: 30px;
  }

  .feature-grid .article-card:not(:first-child) {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .feature-grid .article-card:not(:first-child) img {
    width: 112px;
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
    border-top: 0;
    border-left: 4px solid var(--brand);
  }

  .feature-grid .article-card:not(:first-child) .card-body {
    padding: 14px;
  }

  .feature-grid .article-card:not(:first-child) p {
    display: none;
  }

  .feature-grid .article-card:not(:first-child) h3 {
    font-size: 17px;
  }

  .project-section .project-row:not(.project-head) > span:not(:first-child):not(.project-mobile-meta) {
    display: none;
  }

  .project-section .project-row:not(.project-head) .project-mobile-meta {
    display: block;
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
  }

  .region-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .region-card {
    min-height: 0;
    padding: 16px;
  }

  .region-card h3 {
    margin: 8px 0 6px;
    font-size: 19px;
  }

  .region-card p,
  .directory-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .directory-card-image {
    aspect-ratio: 4 / 3;
  }

  .directory-card-body {
    padding: 14px;
  }

  .directory-card h3 {
    font-size: 18px;
  }

  .report-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 320px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 8px;
  }

  .report-card {
    scroll-snap-align: start;
  }

  .report-preview-grid {
    grid-template-columns: 1fr;
  }

  .report-catalogue .report-preview-grid,
  .report-programme-status,
  .report-programme-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .main-nav .nav-group-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 2px;
    font-size: 11px;
    line-height: 1.2;
  }

  .main-nav .nav-group + .nav-group {
    border-left: 1px solid var(--line);
  }

  .secondary-site-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hub-signal-records {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }

  .hub-signal-records .detail-record {
    min-height: 0;
    padding: 14px;
  }

  .hub-signal-records .detail-record h2 {
    font-size: 26px;
  }

  .hub-signal-records .detail-record p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Formal report download controls */
.report-download-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 18px 0 26px;
}

.report-download-links .text-link {
  margin: 0;
}

.report-publication-record cite {
  font-style: normal;
  overflow-wrap: anywhere;
}

#detail-article-list .detail-record h2,
#detail-intelligence-list .detail-record h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#detail-article-list .detail-record p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
