:root {
  color-scheme: light;
  --ink: #0c0c0c;
  --muted: #5f5f5f;
  --line: #dddddd;
  --surface: #f5f3ef;
  --paper: #ffffff;
  --accent: #111111;
  --soft: #ece8df;
  --shadow: 0 18px 60px rgba(12, 12, 12, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: clamp(190px, 17vw, 260px);
  height: auto;
  max-height: none;
  background: #ffffff;
}

.footer-brand .brand-logo {
  width: 224px;
  height: auto;
  max-height: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(10px, 1.45vw, 22px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--ink);
}

.lang-toggle,
.button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle {
  display: inline-flex;
  width: auto;
  min-width: 76px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
}

.lang-toggle span {
  display: inline-grid;
  min-width: 30px;
  min-height: 30px;
  place-items: center;
  border-radius: 4px;
  font-size: 13px;
}

.lang-toggle [data-active="true"] {
  background: var(--ink);
  color: #fff;
}

.lang-toggle span:not([data-active="true"]) {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
}

.hero {
  position: relative;
  scroll-margin-top: 92px;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 21, 0.93) 0%, rgba(7, 26, 21, 0.76) 43%, rgba(7, 26, 21, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 26, 21, 0.72), rgba(7, 26, 21, 0.04) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(54px, 8vw, 152px)));
  margin: 0 clamp(18px, 6vw, 76px) clamp(34px, 8vh, 90px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1000px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

html[lang="zh-CN"] h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.1;
  text-wrap: balance;
}

html[lang="en"] h1 {
  max-width: 980px;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.1vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

html[lang="en"] h2 {
  font-size: clamp(30px, 3.4vw, 42px);
}

html[lang="zh-CN"] .nav {
  font-size: 13px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  transition: color 150ms ease, border-color 150ms ease;
}

.hero-back-link:hover {
  border-color: #fff;
  color: #fff;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  width: min(860px, 100%);
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "value value"
    "label label";
  gap: 8px 12px;
  align-items: center;
  min-width: 0;
  padding: 20px clamp(16px, 1.9vw, 24px);
}

.hero-stats div:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div > span {
  grid-area: icon;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.hero-stats dt {
  grid-area: value;
  min-width: 0;
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-stats dd {
  grid-area: label;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  font-weight: 850;
}

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

.standards-preview-grid article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.standards-preview-grid img {
  display: block;
  width: 82px;
  height: 70px;
  object-fit: contain;
}

.standards-preview-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.25;
}

.standards-preview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.training-feature-grid article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid #2b6f62;
  border-radius: 8px;
  background: var(--paper);
}

.training-feature-grid .training-feature-primary {
  grid-column: 1 / -1;
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  border-top-color: var(--ink);
  background: #111;
  color: #fff;
}

.training-feature-grid article:nth-child(3) {
  border-top-color: #476c94;
}

.training-feature-grid article:nth-child(4) {
  border-top-color: #7a746b;
}

.training-feature-grid .route-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f0eee8;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.training-feature-grid .training-feature-primary .route-type {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.training-feature-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.18;
}

.training-feature-grid .training-feature-primary h3 {
  max-width: 900px;
  font-size: clamp(30px, 4vw, 52px);
}

.training-feature-grid p {
  margin: 0 0 20px;
  color: var(--muted);
}

.training-feature-grid .training-feature-primary p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.training-feature-grid article > a,
.training-feature-grid .feature-actions {
  margin-top: auto;
}

.training-feature-grid article > a:not(.button) {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  font-weight: 850;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.training-feature-primary .text-link {
  color: #fff;
}

.research-text-only {
  grid-template-columns: 1fr;
}

.research-text-only > div {
  width: 100%;
}

.research-text-only .sdg-research-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.form-privacy {
  color: var(--muted);
}

.contact-form.was-validated :invalid {
  border-color: #a92a2a;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  border-bottom: 1px solid currentColor;
}

.source-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--ink);
  background: #f3f1eb;
  color: var(--muted);
  font-size: 13px;
}

.standard-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.standard-logo-grid article {
  display: grid;
  grid-template-rows: 88px auto 1fr;
  gap: 10px;
  min-height: 210px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.standard-logo {
  display: block;
  width: min(150px, 100%);
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.standard-logo-grid strong {
  font-size: 16px;
  line-height: 1.25;
}

.standard-logo-grid em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.directory-hero {
  width: 100%;
  max-width: none;
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background: #111;
  color: #fff;
}

.directory-hero .section-head {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
}

.directory-hero .section-kicker,
.directory-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.directory-hero h1 {
  max-width: 1000px;
}

.directory-groups {
  display: grid;
  gap: 14px;
}

.directory-group {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.8fr);
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.directory-group h3,
.directory-group p {
  margin: 0;
}

.directory-group p {
  color: var(--muted);
}

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

.boundary-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.boundary-grid article span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .standards-preview-grid,
  .research-text-only .sdg-research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standard-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .standards-preview-grid,
  .training-feature-grid,
  .research-text-only .sdg-research-grid,
  .boundary-grid,
  .form-row,
  .directory-group {
    grid-template-columns: 1fr;
  }

  .training-feature-grid .training-feature-primary {
    grid-column: auto;
    min-height: 0;
  }

  .standards-preview-grid article {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 0;
  }

  .standards-preview-grid img {
    width: 68px;
    height: 58px;
  }

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

  .hero-stats div {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "value" "label";
  }
}

@media (max-width: 480px) {
  .standard-logo-grid {
    grid-template-columns: 1fr;
  }

  .standard-logo-grid article {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: center;
  }

  .standard-logo-grid .standard-logo {
    grid-row: 1 / span 2;
    width: 88px;
    height: 64px;
  }

  .hero-stats div {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "value" "label";
  }
}

/* Final responsive guards: keep metric labels and long bilingual copy contained. */
.hero-stats dt {
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-stats dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .hero-stats div {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "value" "label";
  }

  .feature-actions .button,
  .feature-actions .text-link {
    width: 100%;
  }

  .team-grid h3,
  .team-grid p,
  .team-grid a,
  .standards-preview-grid strong,
  .standards-preview-grid p {
    overflow-wrap: anywhere;
  }
}

html[lang="zh-CN"] .hero-stats dd {
  font-size: 13px;
}

.catalog-hero .hero-stats {
  width: min(860px, 100%);
}

.trust-bridge {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.trust-bridge p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 86px) 0;
}

.section[id] {
  scroll-margin-top: 112px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.method-panel p,
.case-copy p,
.research p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 1180px;
  margin-bottom: 32px;
}

.founder {
  padding-top: 0;
}

.founder-card {
  display: block;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.founder-card > div {
  max-width: 980px;
}

.founder-visual {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.profile-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.founder-visual p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-visual h3 {
  max-width: 260px;
  font-size: 30px;
  line-height: 1.05;
}

.founder-visual ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.founder-visual li {
  padding-left: 16px;
  border-left: 3px solid var(--ink);
}

.founder-card p {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
}

.founder-card h2 {
  max-width: 940px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  text-wrap: balance;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 26px 0;
}

.founder-points span {
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 800;
  line-height: 1.35;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.image-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-strip figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(23, 33, 31, 0.05);
}

.service-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 900;
}

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

.service-card .tag-row {
  margin-top: auto;
  padding-top: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

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

.pricing-grid article {
  min-height: 226px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.pricing-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pricing-grid p {
  color: var(--muted);
}

.pricing-actions {
  margin-top: 18px;
}

.form-button[aria-busy="true"] {
  cursor: progress;
  opacity: .72;
}

.categories,
.standards,
.training {
  border-top: 1px solid var(--line);
}

.training,
.compact-research {
  position: relative;
  background: #f0eee8;
  box-shadow: 0 0 0 100vmax #f0eee8;
  clip-path: inset(0 -100vmax);
}

.track-grid,
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.track-grid article,
.standard-grid article {
  min-height: 214px;
  padding: 24px;
  background: var(--paper);
}

.track-grid h3,
.standard-grid h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.track-grid p,
.standard-grid p {
  color: var(--muted);
}

.method {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.method-panel {
  position: sticky;
  top: 104px;
  padding: 34px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

.method-panel .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.method-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-list li::before {
  content: "0" counter(process);
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
}

.process-list span {
  grid-column: 2;
  color: var(--muted);
}

.cases {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.impact-board {
  display: grid;
  gap: 12px;
}

.impact-board div {
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.impact-board strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.impact-board span {
  color: rgba(255, 255, 255, 0.76);
}

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

.case-detail-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.case-detail-grid span,
.credential-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.case-detail-grid p {
  color: var(--muted);
}

.research {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.research-visual {
  display: grid;
  gap: 14px;
  align-self: start;
}

.research-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.research-photo img {
  display: block;
  width: 100%;
  height: clamp(480px, 47vw, 620px);
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.88;
}

.research-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 26, 21, 0.9) 100%);
  pointer-events: none;
}

.research-photo figcaption,
.research-theme-tags {
  position: absolute;
  z-index: 1;
  right: 22px;
  left: 22px;
  color: #fff;
}

.research-photo figcaption {
  bottom: 88px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1.08;
}

.research-theme-tags {
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.research-theme-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.training-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.training-visual {
  margin: 0;
}

.training-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.training-proof-grid article {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.training-proof-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.training-proof-grid strong {
  margin: 12px 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.training-proof-grid p {
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
}

.sdg-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.sdg-panel span {
  min-height: 74px;
  padding: 10px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.clean-list li {
  padding-left: 22px;
  border-left: 3px solid var(--ink);
  color: var(--muted);
}

.research-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sdg-research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.sdg-research-grid article {
  position: relative;
  min-height: 174px;
  padding: 18px;
  padding-top: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sdg-research-grid article::before,
.research-paper-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #111;
}

.theme-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.sdg-research-grid .theme-icon {
  position: absolute;
  top: 18px;
  right: 18px;
}

.theme-built .theme-icon,
.theme-icon.theme-built,
.theme-built::before {
  background: #2b6f62;
}

.theme-industry .theme-icon,
.theme-icon.theme-industry,
.theme-industry::before {
  background: #fd6925;
}

.theme-education .theme-icon,
.theme-icon.theme-education,
.theme-education::before {
  background: #c5192d;
}

.theme-field .theme-icon,
.theme-icon.theme-field,
.theme-field::before {
  background: #0a97d9;
}

.paper-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.sdg-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.sdg-icons span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.sdg-icons .sdg-2 { background: #dda63a; color: #111; }
.sdg-icons .sdg-4 { background: #c5192d; }
.sdg-icons .sdg-7 { background: #fbc412; color: #111; }
.sdg-icons .sdg-8 { background: #a21942; }
.sdg-icons .sdg-9 { background: #fd6925; }
.sdg-icons .sdg-11 { background: #fd9d24; color: #111; }
.sdg-icons .sdg-12 { background: #bf8b2e; }
.sdg-icons .sdg-13 { background: #3f7e44; }
.sdg-icons .sdg-14 { background: #0a97d9; }

.sdg-research-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.18;
}

.sdg-research-grid p {
  color: var(--muted);
  font-size: 14px;
}

.sdg-research-grid small {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.scholar-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.scholar-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  min-height: 78px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.scholar-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.scholar-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.research-catalog-hero .catalog-hero-content {
  max-width: none;
}

.research-catalog {
  display: grid;
  gap: 22px;
}

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

.research-paper-grid:has(.research-paper-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-paper-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  padding-left: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(12, 12, 12, 0.04);
}

.research-paper-card.featured-course {
  background: #111;
  color: #fff;
}

#built-environment .research-paper-card::before {
  background: #2b6f62;
}

#industry-disclosure .research-paper-card::before {
  background: #fd6925;
}

#education-ai .research-paper-card::before {
  background: #c5192d;
}

#field-systems .research-paper-card::before {
  background: #0a97d9;
}

.research-paper-card.featured-course p,
.research-paper-card.featured-course .paper-meta strong {
  color: rgba(255, 255, 255, 0.74);
}

.paper-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.theme-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.paper-meta span {
  margin-bottom: 0;
}

.paper-meta strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.research-paper-card h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
}

.research-paper-card p {
  color: var(--muted);
}

.research-paper-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

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

.training-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.training-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

.training-hero-card .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.training-hero-card h3 {
  max-width: 520px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
}

.training-hero-card p {
  color: rgba(255, 255, 255, 0.74);
}

.training-contacts {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.training-contacts a {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.training-contacts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.training-contacts strong {
  font-size: 18px;
}

.training-contacts em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  overflow-wrap: anywhere;
}

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

.training-featured article,
.course-pathways article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.training-featured article {
  min-height: 290px;
}

.training-featured span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.training-featured p,
.course-pathways p {
  color: var(--muted);
}

.training-featured ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.training-featured li {
  padding-left: 14px;
  border-left: 3px solid var(--ink);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.training-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.training-list span {
  color: var(--muted);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.training-list h3 {
  margin-bottom: 8px;
}

.training-list p {
  grid-column: 2;
  color: var(--muted);
}

.credentials .section-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.credential-board {
  display: grid;
  gap: 18px;
}

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

.credential-highlights article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.credential-highlights h3 {
  font-size: 20px;
}

.credential-highlights p {
  color: rgba(255, 255, 255, 0.74);
}

.credential-highlights strong {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.credential-highlights span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.credential-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.credential-category h3 {
  position: sticky;
  top: 104px;
  align-self: start;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.credential-list div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.credential-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.credential-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.credential-list em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-direct a {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-direct span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-direct strong {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.site-footer img {
  width: 224px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.split-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-badges,
.credential-mini-list,
.tag-row,
.course-tags,
.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges {
  max-width: 900px;
  margin: 26px 0 18px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.trust-stats {
  border-color: rgba(255, 255, 255, 0.24);
}

.credentials-priority {
  padding-top: clamp(54px, 7vw, 82px);
}

.priority-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.credential-mini-list span,
.tag-row span,
.course-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.compact-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-index {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

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

.team-grid article,
.partner-note,
.standard-matrix,
.training-accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.team-grid article {
  min-height: 286px;
  padding: 22px;
}

.team-grid span,
.case-metrics small,
.standard-matrix em {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.team-grid h3 {
  margin-top: 18px;
  font-size: clamp(22px, 1.8vw, 27px);
}

.team-grid p {
  color: var(--muted);
}

.team-grid a {
  display: inline-flex;
  margin-top: 10px;
  margin-right: 14px;
  font-weight: 850;
  border-bottom: 2px solid var(--ink);
  overflow-wrap: anywhere;
}

.partner-note {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  margin-top: 14px;
  padding: 22px 26px;
}

.partner-note span {
  color: var(--muted);
}

.quantified-cases article {
  min-height: 280px;
}

.case-metrics {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px 10px;
  align-items: baseline;
  margin: 18px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-metrics b {
  font-size: 22px;
}

.compact-metric {
  grid-template-columns: auto 1fr;
}

.case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.case-badges span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f3f1eb;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.standard-matrix {
  overflow: hidden;
}

.standard-matrix div {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 1fr) minmax(120px, auto);
  min-height: 108px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.standard-matrix div:last-child {
  border-bottom: 0;
}

.standard-matrix span {
  color: var(--muted);
}

.standard-matrix em {
  justify-self: end;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f1eb;
  font-style: normal;
}

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

.standards-subtitle,
.standards-reference-head {
  margin-top: 30px;
}

.standards-subtitle {
  font-size: 21px;
}

.authority-card {
  display: grid;
  grid-template-rows: 112px auto;
  min-width: 0;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(12, 12, 12, 0.035);
}

.authority-logo-frame {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.authority-logo-frame img {
  display: block;
  width: min(218px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.authority-edb .authority-logo-frame {
  background: #152620;
}

.authority-edb .authority-logo-frame img {
  width: min(150px, 84%);
  height: 76px;
}

.authority-logo-compact img {
  width: 76px;
  height: 64px;
}

.authority-card > div:last-child {
  min-width: 0;
  padding: 20px 22px 22px;
}

.authority-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.authority-card p,
.standards-reference-head p,
.criteria-grid p {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.authority-card p {
  margin: 0;
}

.standards-reference-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.standards-reference-head h3,
.standards-reference-head p {
  margin-bottom: 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.criteria-grid article {
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.team-grid article a {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.criteria-grid span {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f0eee8;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.criteria-grid strong {
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.3;
}

.criteria-grid p {
  margin: auto 0 0;
}

.standard-boundary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.standard-boundary strong {
  font-size: 14px;
  text-transform: uppercase;
}

.standard-boundary p {
  margin: 0;
  color: var(--muted);
}

.training-accordion {
  display: grid;
  gap: 12px;
}

.training-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.training-route-grid article {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.training-route-grid article:nth-child(2) {
  border-top-color: #2b6f62;
}

.training-route-grid article:nth-child(3) {
  border-top-color: #476c94;
}

.training-route-grid article:nth-child(4) {
  border-top-color: #7a746b;
}

.training-route-grid .route-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0eee8;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.training-route-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.training-route-grid p {
  color: var(--muted);
  font-size: 14px;
}

.training-route-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  font-weight: 900;
}

.training-accordion summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.training-accordion details[open] summary {
  border-bottom: 1px solid var(--line);
}

.course-tags {
  padding: 20px 24px 24px;
}

.compact-leads {
  margin-top: 16px;
}

.contact-cta-row {
  margin: 24px 0;
}

.training-actions {
  margin-top: 24px;
}

.catalog-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.catalog-hero-media {
  position: absolute;
  inset: 0;
}

.catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.9) contrast(1.04);
  opacity: 0.82;
}

.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 21, 0.93) 0%, rgba(7, 26, 21, 0.76) 43%, rgba(7, 26, 21, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 26, 21, 0.72), rgba(7, 26, 21, 0.04) 50%);
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(54px, 8vw, 152px)));
  margin: 0 clamp(18px, 6vw, 76px) clamp(34px, 8vh, 90px);
  color: #fff;
}

.catalog-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.academy-system {
  border-bottom: 1px solid var(--line);
}

.training-access,
.online-learning,
.collaboration-pathway,
.standards-lineage {
  border-bottom: 1px solid var(--line);
}

.training-access,
.collaboration-pathway {
  background: #f3f1ec;
}

.detailed-routes {
  margin-bottom: 0;
}

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

.online-category-grid > article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.online-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #f7f6f2;
}

.online-category-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.online-category-head h3 {
  margin: 0;
  font-size: 20px;
}

.online-category-grid article > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 16px 20px;
}

.online-category-grid article > a + a {
  border-top: 1px solid var(--line);
}

.online-category-grid article > a:hover {
  background: #f7f6f2;
}

.online-category-grid small {
  color: #2b6f62;
  font-weight: 900;
  white-space: nowrap;
}

.pathway-boundary {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.pathway-boundary strong {
  font-size: 13px;
  text-transform: uppercase;
}

.pathway-boundary p {
  margin: 0;
  color: var(--muted);
}

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

.collaboration-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.collaboration-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 900;
}

.collaboration-grid p {
  color: var(--muted);
}

.lineage-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.lineage-flow article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.lineage-flow article > span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0eee8;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lineage-flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
}

.lineage-flow p {
  color: var(--muted);
}

.lineage-arrow {
  align-self: center;
  font-size: 34px;
  font-weight: 900;
}

.reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#academy-catalog {
  scroll-margin-top: 100px;
}

.academy-feature-grid,
.course-card-grid {
  display: grid;
  gap: 14px;
}

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

.academy-feature-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.academy-feature-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 900;
}

.academy-feature-grid p,
.course-card p,
.course-card small,
.catalog-contact p {
  color: var(--muted);
}

.course-catalog {
  border-bottom: 1px solid var(--line);
}

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

.course-card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(23, 33, 31, 0.05);
}

.course-card.featured-course {
  border-color: #111;
  box-shadow: var(--shadow);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.course-meta span,
.course-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-meta strong {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.course-card h3 {
  min-height: 78px;
}

.course-card .course-tags {
  margin-top: auto;
  padding: 18px 0 12px;
}

.course-card small {
  display: block;
  font-weight: 750;
  line-height: 1.45;
}

.catalog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.catalog-contact {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.catalog-contact p {
  margin: 10px 0 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .lang-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
  }

	  .intro,
	  .founder-card,
	  .method,
	  .case-layout,
	  .case-detail-grid,
	  .research,
	  .training-system,
	  .training-overview,
	  .split-head,
	  .credential-highlights,
	  .team-grid,
	  .academy-feature-grid,
	  .course-card-grid,
	  .course-card-grid.two-up,
	  .research-paper-grid,
	  .catalog-cta,
	  .contact {
	    grid-template-columns: 1fr;
	  }

  .training-route-grid,
  .online-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-route-grid article {
    min-height: 210px;
  }

  .collaboration-grid {
    grid-template-columns: 1fr;
  }

	  .track-grid,
	  .standard-grid,
	  .image-strip,
	  .training-featured,
	  .compact-services,
	  .founder-points,
	  .pricing-grid,
	  .standard-logo-grid,
  .criteria-grid {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }

  .authority-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

	  .sdg-research-grid {
	    grid-template-columns: 1fr;
	  }

  .training-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .training-visual img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    object-position: center top;
  }

	  .priority-highlights {
	    grid-template-columns: 1fr;
	  }

	  .partner-note,
	  .standard-matrix div {
	    grid-template-columns: 1fr;
	  }

  .standard-boundary {
    grid-template-columns: 1fr;
  }

	  .standard-matrix em {
	    justify-self: start;
	  }

  .method-panel {
    position: static;
  }

  .credential-category {
    grid-template-columns: 1fr;
  }

  .credential-category h3 {
    position: static;
  }

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

  .founder-card h2 {
    max-width: 780px;
    font-size: clamp(30px, 5vw, 40px);
  }

  .founder-points {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 980px) {
  .authority-logo-grid,
  .criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standards-reference-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .training-proof-grid article {
    min-height: auto;
  }

  .training-proof-grid p {
    margin-top: 10px;
  }

  .research-photo img {
    aspect-ratio: 16 / 10;
    height: auto;
    object-position: center 48%;
  }

  .pathway-boundary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-logo {
    width: min(210px, 56vw);
    height: auto;
    max-width: 56vw;
  }

  .hero {
    min-height: calc(100svh - 66px);
    scroll-margin-top: 86px;
    align-items: start;
    padding: 38px 0 28px;
  }

  .catalog-hero {
    min-height: calc(100svh - 66px);
  }

  .section {
    padding: 42px 0;
  }

  .section[id] {
    scroll-margin-top: 92px;
  }

  .credentials-priority {
    padding-top: 44px;
  }

  .trust-bridge {
    padding: 20px 0;
  }

  .hero-content {
    width: min(100% - 46px, 540px);
    margin: 0 auto;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  html[lang="zh-CN"] h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.12;
  }

  h2 {
    font-size: 29px;
  }

  .founder-card h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

	  .hero-stats,
	  .service-grid,
	  .compact-services,
	  .team-grid,
	  .track-grid,
	  .standard-grid,
	  .training-list,
  .training-featured,
  .course-pathways,
  .image-strip,
  .founder-points,
  .pricing-grid,
	  .case-detail-grid,
	  .academy-feature-grid,
	  .course-card-grid,
	  .credential-highlights,
	  .priority-highlights,
	  .credential-list,
	  .standard-logo-grid,
	  .authority-logo-grid,
	  .criteria-grid,
    .training-route-grid,
    .online-category-grid {
	    grid-template-columns: 1fr;
	  }

  .lineage-flow {
    grid-template-columns: 1fr;
  }

  .lineage-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .online-category-grid article > a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .online-category-grid small {
    white-space: normal;
  }

  .training-route-grid article,
  .collaboration-grid article,
  .lineage-flow article {
    min-height: auto;
    padding: 20px;
  }

  .authority-card {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 190px;
  }

  .authority-logo-frame {
    height: 100%;
    min-height: 188px;
    padding: 18px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .authority-logo-frame img {
    width: 100%;
    height: 70px;
  }

  .authority-edb .authority-logo-frame img {
    width: 100%;
    height: 72px;
  }

  .authority-logo-compact img {
    width: 62px;
    height: 54px;
  }

  .authority-card > div:last-child {
    padding: 18px;
  }

  .criteria-grid article {
    min-height: auto;
  }

  .research {
    gap: 22px;
  }

  .research-photo img {
    aspect-ratio: 5 / 4;
    height: auto;
  }

  .research-photo figcaption {
    bottom: 82px;
    font-size: 24px;
  }

  .research-links .button,
  .training-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats div:not(:first-child)::before {
    display: none;
  }

  .hero-stats div {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 16px 18px;
  }

  .hero-stats dt {
    font-size: 26px;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .catalog-hero-media img {
    object-position: center;
  }

  .process-list li,
  .training-list article {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-column: auto;
  }

  .training-list p {
    grid-column: auto;
  }

  .founder-visual {
    min-height: 260px;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

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

	  .contact-form,
	  .method-panel,
	  .service-card,
	  .founder-card,
	  .team-grid article,
	  .training-hero-card,
	  .training-featured article,
	  .course-pathways article,
	  .pricing-grid article,
	  .case-detail-grid article,
	  .credential-highlights article,
	  .credential-category {
	    padding: 20px;
	  }

	  .hero-badges span,
	  .credential-mini-list span,
	  .tag-row span,
	  .course-tags span {
	    font-size: 12px;
	  }

	  .case-metrics {
	    grid-template-columns: auto 1fr;
	  }

	  .course-card {
	    min-height: auto;
	  }

	  .course-card h3 {
	    min-height: auto;
	  }

	  .training-accordion summary {
	    font-size: 19px;
	  }
}

@media (max-width: 640px) {
  .hero-stats div {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas: "value" "label" !important;
  }
}

/* 2026-08-14 layout integrity: research cards, standards marks and public sources. */
.research.research-text-only {
  display: block;
  grid-template-columns: minmax(0, 1fr);
}

.research-text-only .section-kicker,
.research-text-only h2,
.research-text-only > div > p {
  max-width: 860px;
}

.research-text-only h2 {
  font-size: 44px;
  line-height: 1.08;
}

.research-text-only .sdg-research-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.research-text-only .sdg-research-grid article {
  min-width: 0;
  min-height: 0;
  padding: 22px 22px 20px;
  overflow: visible;
}

.research-text-only .sdg-research-grid h3 {
  min-height: 52px;
  font-size: 22px;
  overflow-wrap: normal;
  word-break: normal;
}

.research-text-only .sdg-research-grid p,
.research-text-only .sdg-research-grid small {
  overflow-wrap: break-word;
  word-break: normal;
}

.research-paper-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.public-reference-panel {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  margin-top: 18px;
  padding: 26px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.public-reference-panel h3 {
  margin-bottom: 8px;
}

.public-reference-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.public-reference-panel .section-kicker {
  color: rgba(255, 255, 255, .62);
}

.public-reference-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.public-reference-panel a {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
}

.public-reference-panel a:hover {
  background: rgba(255, 255, 255, .12);
}

.public-reference-panel a span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.standards-preview-grid article {
  grid-template-columns: 122px minmax(0, 1fr);
  min-width: 0;
  min-height: 172px;
  align-items: center;
  overflow: visible;
}

.standards-preview-grid img,
.standards-preview-grid .standard-ref-mark {
  width: 116px;
  max-width: 116px;
  height: 76px;
  max-height: 76px;
  justify-self: center;
  object-fit: contain;
  object-position: center;
}

.standards-preview-grid strong,
.standards-preview-grid p {
  overflow-wrap: break-word;
  word-break: normal;
}

.standard-ref-mark {
  display: grid;
  width: 150px;
  max-width: 100%;
  height: 82px;
  align-content: center;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #bfc4c7;
  background: #f8f9f8;
  color: #172c3d;
  line-height: 1.1;
}

.standard-ref-mark span {
  font-size: 21px;
  font-weight: 900;
}

.standard-ref-mark b {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.standard-ref-wide b {
  font-size: 12px;
}

.standard-logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
  gap: 14px;
}

.standard-logo-grid article {
  grid-template-rows: 96px auto minmax(0, 1fr);
  min-width: 0;
  min-height: 254px;
  gap: 12px;
  padding: 18px;
  overflow: visible;
}

.standard-logo-grid .standard-logo,
.standard-logo-grid .standard-ref-mark {
  width: auto;
  max-width: min(176px, 100%);
  height: auto;
  max-height: 82px;
  align-self: center;
  justify-self: start;
  object-fit: contain;
  object-position: left center;
}

.standard-logo-grid .standard-logo-ifrs,
.standard-logo-grid .standard-logo-sasb {
  max-width: min(180px, 100%);
  max-height: 78px;
}

.standard-logo-grid .standard-logo-edb {
  max-width: min(158px, 100%);
  max-height: 78px;
}

.standard-logo-grid .standard-logo-cdp {
  max-width: min(154px, 100%);
  max-height: 64px;
  color: #111;
}

.standard-logo-grid .standard-logo-sbti {
  max-width: min(164px, 100%);
  max-height: 80px;
}

.standard-logo-grid .standard-logo-accountability {
  max-width: min(178px, 100%);
  max-height: 58px;
}

.standard-logo-surface {
  display: grid;
  width: min(176px, 100%);
  height: 82px;
  place-items: center;
  align-self: center;
  justify-self: start;
  padding: 10px 12px;
}

.standard-logo-surface .standard-logo {
  width: 100%;
  height: 100%;
  object-position: center;
}

.standard-logo-surface-dark {
  border-radius: 4px;
  background: #202522;
}

.standard-logo-grid strong,
.standard-logo-grid em {
  min-width: 0;
  overflow: visible;
  overflow-wrap: break-word;
  word-break: normal;
}

.standard-logo-grid strong {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.standard-logo-grid em {
  font-size: 13px;
  line-height: 1.5;
}

.form-scheduling-note {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid var(--ink);
  background: #f3f1eb;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .public-reference-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .research-text-only h2 {
    font-size: 32px;
  }

  .research-text-only .sdg-research-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .research-text-only .sdg-research-grid h3 {
    min-height: 0;
    font-size: 20px;
  }

  .public-reference-panel nav {
    grid-template-columns: 1fr;
  }

  .standards-preview-grid article {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .standards-preview-grid img,
  .standards-preview-grid .standard-ref-mark {
    width: 92px;
    max-width: 92px;
    height: 66px;
    max-height: 66px;
  }
}

@media (max-width: 520px) {
  .team-grid a[href^="mailto:"] {
    font-size: 13px;
    letter-spacing: 0;
  }

  .standard-logo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .standard-logo-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 90px auto auto;
    min-height: 0;
    padding: 18px;
  }

  .standard-logo-grid .standard-logo,
  .standard-logo-grid .standard-ref-mark,
  .standard-logo-grid .standard-logo-surface {
    grid-row: auto;
    width: auto;
    max-width: min(176px, 100%);
    height: auto;
    max-height: 78px;
    justify-self: start;
  }

  .standards-preview-grid article {
    grid-template-columns: 1fr;
  }

  .standards-preview-grid img,
  .standards-preview-grid .standard-ref-mark {
    justify-self: start;
  }
}

/* Unified full-bleed heroes for specialist pages. */
.page-catalog-hero {
  scroll-margin-top: 92px;
}

.page-catalog-hero .catalog-hero-content {
  width: min(1120px, calc(100% - clamp(54px, 8vw, 152px)));
}

.page-catalog-hero h1 {
  max-width: 1040px;
}

.standards-catalog-hero h1 {
  max-width: 980px;
}

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

.standards-catalog-hero .catalog-hero-media img,
.experience-catalog-hero .catalog-hero-media img,
.trustmark-catalog-hero .catalog-hero-media img {
  object-position: center;
}

.page-catalog-hero .hero-stats {
  width: min(920px, 100%);
}

.trustmark-catalog-hero .hero-copy {
  margin-bottom: 18px;
}

.trustmark-catalog-hero .trustmark-pilot-status {
  width: min(760px, 100%);
  margin: 0 0 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .page-catalog-hero .catalog-hero-content {
    width: min(1120px, calc(100% - 54px));
    margin-right: clamp(18px, 6vw, 76px);
    margin-left: clamp(18px, 6vw, 76px);
  }

  .page-catalog-hero h1,
  html[lang="zh-CN"] .page-catalog-hero h1 {
    max-width: none;
  }

  .standards-catalog-hero .catalog-hero-media img,
  .experience-catalog-hero .catalog-hero-media img,
  .trustmark-catalog-hero .catalog-hero-media img {
    object-position: 62% center;
  }

  .trustmark-catalog-hero .trustmark-pilot-status {
    padding: 13px 15px;
  }
}

/* 2026 information-architecture and responsive consolidation. */
.research-text-only {
  width: min(1180px, calc(100% - 36px));
  max-width: 1180px;
  margin-inline: auto;
}

.research-text-only > div {
  width: 100%;
  min-width: 0;
}

.compact-directory-hero {
  padding-bottom: clamp(30px, 4vw, 48px);
}

.compact-directory-hero .section-head {
  margin-bottom: 0;
}

.compact-directory-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.6vw, 72px);
}

html[lang="zh-CN"] .compact-directory-hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
}

.credential-scope-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.credential-scope-groups > div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.credential-scope-groups > div > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
}

.credential-scope-groups .credential-mini-list {
  gap: 7px;
}

.credential-scope-groups .framework-tags span {
  border-color: #cbd7d2;
  background: #eff6f3;
  color: #244c40;
}

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

.entry-card-grid > a {
  grid-column: auto;
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.entry-card-grid > a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.entry-card-grid > a > span {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-card-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 28px);
}

.entry-card-grid p {
  margin: 0;
  color: var(--muted);
}

.team-directory,
.experience-directory {
  padding-top: 28px;
}

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

.team-directory .team-grid article {
  min-height: 330px;
  padding: 28px;
}

.team-directory .team-grid h2 {
  margin: 18px 0 12px;
  font-size: clamp(26px, 2.8vw, 34px);
}

.experience-directory .case-detail-grid {
  margin-top: 0;
}

.experience-directory .case-detail-grid h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.1vw, 29px);
}

.experience-directory .public-reference-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.8vw, 34px);
}

.trustmark-hero {
  gap: clamp(36px, 5vw, 72px);
  min-height: 600px;
  padding-block: clamp(64px, 7vw, 92px);
}

.trustmark-hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 4.5vw, 62px);
  line-height: 1.04;
}

html[lang="zh-CN"] .trustmark-hero h1 {
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.08;
}

.trustmark-identity-panel {
  min-height: 300px;
}

.trustmark-identity-panel > span {
  font-size: clamp(30px, 3vw, 42px);
}

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

.trustmark-phase-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid #26735e;
  border-radius: 8px;
  background: var(--paper);
}

.trustmark-phase-grid article:nth-child(2) { border-top-color: #087d78; }
.trustmark-phase-grid article:nth-child(3) { border-top-color: #224b93; }
.trustmark-phase-grid article:nth-child(4) { border-top-color: #594168; }

.trustmark-phase-grid header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 88px;
  margin-bottom: 18px;
}

.trustmark-phase-grid header > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.trustmark-phase-grid h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.trustmark-phase-grid small {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.trustmark-phase-grid ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.trustmark-phase-grid li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  background: #f8f7f3;
}

.trustmark-phase-grid li b {
  color: var(--muted);
  font-size: 12px;
}

.trustmark-interest {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.trustmark-interest > div {
  position: sticky;
  top: 112px;
}

.trustmark-interest > div p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: 30px;
}

.updates-timeline {
  display: grid;
  gap: 14px;
}

.updates-timeline > article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.updates-timeline time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.updates-timeline article > div > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eff3f1;
  color: #244c40;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.updates-timeline h3 {
  margin-top: 0;
  font-size: clamp(24px, 2.4vw, 32px);
}

.updates-timeline p {
  color: var(--muted);
}

.updates-timeline article > div > a:not(.button) {
  display: inline-flex;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--ink);
  font-weight: 850;
}

.updates-channels {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.updates-channels h2 {
  margin-top: 0;
  font-size: 30px;
}

.updates-channels > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .7);
}

.updates-channels > a {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
}

.updates-channels > a span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

@media (max-width: 900px) {
  .entry-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card-grid > a,
  .entry-card-grid > a:nth-child(4),
  .entry-card-grid > a:nth-child(5) {
    grid-column: auto;
  }

  .entry-card-grid > a:last-child {
    grid-column: 1 / -1;
  }

  .credential-scope-groups,
  .trustmark-phase-grid,
  .trustmark-interest,
  .updates-layout {
    grid-template-columns: 1fr;
  }

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

  .trustmark-interest > div,
  .updates-channels {
    position: static;
  }
}

@media (max-width: 640px) {
  .compact-directory-hero h1,
  html[lang="zh-CN"] .compact-directory-hero h1,
  .trustmark-hero h1,
  html[lang="zh-CN"] .trustmark-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .entry-card-grid,
  .team-directory .team-grid,
  .credential-scope-groups,
  .trustmark-phase-grid {
    grid-template-columns: 1fr;
  }

  .research-paper-grid:has(.research-paper-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }

  .entry-card-grid > a:last-child {
    grid-column: auto;
  }

  .entry-card-grid > a,
  .team-directory .team-grid article {
    min-height: 0;
  }

  .trustmark-hero {
    min-height: 0;
    padding-block: 48px;
  }

  .trustmark-identity-panel {
    min-height: 220px;
  }

  .trustmark-phase-grid article,
  .updates-timeline > article {
    padding: 22px;
  }

  .updates-timeline > article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .updates-timeline time {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }

  .experience-directory .case-detail-grid h2,
  .team-directory .team-grid h2 {
    font-size: 26px;
  }
}

/* Trustmark, news and final cross-device layout guards. */
.nav {
  gap: clamp(10px, 1vw, 20px);
}

.nav a {
  font-size: 14px;
  white-space: nowrap;
}

.standards-preview-grid .standards-preview-logo-ifrs {
  width: 116px;
  height: 76px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.standard-logo-grid article {
  overflow: visible;
}

.standard-logo-grid .standard-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 176px;
  max-height: 76px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.standard-logo-grid .standard-logo-nea {
  width: 176px;
  max-width: 100%;
  max-height: 68px;
}

.standard-logo-grid .standard-logo-ghg {
  width: 182px;
  max-width: 100%;
  max-height: 45px;
}

.standard-logo-grid strong,
.standard-logo-grid em {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.research-text-only,
.research-text-only > div {
  display: block;
  width: 100%;
  min-width: 0;
}

.research-text-only .section-kicker,
.research-text-only h2,
.research-text-only > div > p {
  max-width: 780px;
}

.research-text-only .sdg-research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 30px;
}

.research-text-only .sdg-research-grid article {
  min-width: 0;
  min-height: 300px;
  padding: 26px;
  overflow: visible;
}

.research-text-only .sdg-research-grid h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  word-break: normal;
  overflow-wrap: break-word;
}

.research-text-only .sdg-research-grid p,
.research-text-only .sdg-research-grid small {
  word-break: normal;
  overflow-wrap: break-word;
}

.trustmark-preview,
.news-preview,
.trustmark-theme-section,
.news-feature-section {
  border-top: 1px solid var(--line);
}

.trustmark-overview-grid,
.news-card-grid,
.news-list-grid,
.trustmark-governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trustmark-overview-grid article,
.news-card,
.news-list-grid article,
.trustmark-governance-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trustmark-overview-grid article {
  min-height: 226px;
  border-top: 4px solid var(--ink);
}

.trustmark-overview-grid article > span,
.trustmark-scope-grid article > span,
.trustmark-process-grid li > span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.trustmark-overview-grid h3,
.news-card h3,
.news-list-grid h3,
.trustmark-governance-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

.trustmark-overview-grid p,
.news-card p,
.news-list-grid p,
.trustmark-governance-grid p {
  margin: 0;
  color: var(--muted);
}

.trustmark-status-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  background: #f7f6f2;
}

.trustmark-status-row span {
  color: var(--muted);
}

.news-card-grid {
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.news-card-featured {
  border-top: 4px solid #26735e;
}

.news-meta,
.news-feature-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.news-meta span,
.news-feature-label span,
.news-feature-label time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.news-card > a,
.news-list-grid article > a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-weight: 850;
}

.trustmark-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.trustmark-hero-copy {
  max-width: 760px;
}

.trustmark-hero-copy > p:not(.section-kicker) {
  max-width: 700px;
  color: #d8d8d3;
  font-size: 20px;
}

.trustmark-hero-copy .section-kicker {
  color: #c9c9c4;
}

.trustmark-pilot-status {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #58a990;
  background: rgba(255, 255, 255, 0.08);
}

.trustmark-pilot-status span {
  color: #c9c9c4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trustmark-pilot-status strong {
  color: #fff;
}

.trustmark-identity-panel {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trustmark-identity-panel img {
  display: block;
  width: min(300px, 100%);
  height: auto;
}

.trustmark-identity-panel > span {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
}

.trustmark-identity-panel > strong {
  color: #26735e;
}

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

.trustmark-scope-grid article {
  min-width: 0;
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trustmark-scope-grid h3,
.trustmark-theme-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.trustmark-scope-grid p {
  margin: 0;
  color: var(--muted);
}

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

.trustmark-theme-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 6px solid #26735e;
  border-radius: 8px;
  background: var(--paper);
}

.trustmark-theme-grid article:nth-child(2) { border-left-color: #087d78; }
.trustmark-theme-grid article:nth-child(3) { border-left-color: #224b93; }
.trustmark-theme-grid article:nth-child(4) { border-left-color: #594168; }
.trustmark-theme-grid article:nth-child(5) { border-left-color: #92642f; }
.trustmark-theme-grid article:nth-child(6) { border-left-color: #333; }

.trustmark-theme-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.trustmark-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.trustmark-process-grid li {
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
}

.trustmark-process-grid li > strong {
  font-size: 19px;
}

.trustmark-boundary-note {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  background: #f7f6f2;
}

.trustmark-boundary-note p {
  margin: 10px 0 0;
  color: var(--muted);
}

.news-feature-article {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.news-feature-label {
  align-content: start;
  align-items: flex-start;
}

.news-feature-article h2 {
  max-width: 860px;
  margin-top: 0;
}

.news-feature-article > div:last-child > p:not(.section-kicker) {
  max-width: 850px;
  color: var(--muted);
  font-size: 19px;
}

.news-source-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  padding: 1px;
  background: var(--line);
}

.news-source-facts div {
  min-width: 0;
  padding: 16px;
  background: #f7f6f2;
}

.news-source-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-source-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.news-list-grid article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.news-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.news-contact-band > div {
  max-width: 760px;
}

.news-contact-band p:last-child {
  color: var(--muted);
}

@media (max-width: 980px) {
  .trustmark-hero,
  .news-feature-article {
    grid-template-columns: 1fr;
  }

  .trustmark-overview-grid,
  .news-card-grid,
  .news-list-grid,
  .trustmark-theme-grid,
  .trustmark-process-grid,
  .trustmark-governance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trustmark-identity-panel {
    min-height: 240px;
  }
}

@media (max-width: 700px) {
  .research-text-only .sdg-research-grid,
  .trustmark-overview-grid,
  .news-card-grid,
  .news-list-grid,
  .trustmark-theme-grid,
  .trustmark-process-grid,
  .trustmark-governance-grid,
  .trustmark-scope-grid,
  .news-source-facts,
  .trustmark-status-row,
  .news-contact-band {
    grid-template-columns: 1fr;
  }

  .research-text-only .sdg-research-grid article,
  .trustmark-scope-grid article,
  .news-card,
  .news-list-grid article {
    min-height: 0;
  }

  .standard-logo-grid .standard-logo-nea,
  .standard-logo-grid .standard-logo-ghg {
    width: auto;
    max-width: 100%;
  }

  .news-feature-label {
    margin-bottom: 0;
  }

  .news-contact-band .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .standards-preview-grid .standards-preview-logo-ifrs {
    width: 88px;
    height: 64px;
  }

  .standard-logo-grid article {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .standard-logo-grid .standard-logo,
  .standard-logo-grid .standard-ref-mark,
  .standard-logo-grid .standard-logo-surface {
    grid-row: 1 / span 2;
    width: 88px;
    max-width: 88px;
    height: 64px;
    max-height: 64px;
    align-self: center;
    object-fit: contain;
  }

  .trustmark-identity-panel,
  .news-feature-article,
  .trustmark-overview-grid article,
  .trustmark-scope-grid article,
  .trustmark-theme-grid article,
  .trustmark-governance-grid article,
  .news-card,
  .news-list-grid article {
    padding: 22px;
  }
}

/* Team and updates use the same image-led page system as the specialist catalogues. */
.team-catalog-hero h1 {
  max-width: 860px;
}

.updates-catalog-hero h1 {
  max-width: 920px;
}

.team-catalog-hero .catalog-hero-media img,
.updates-catalog-hero .catalog-hero-media img {
  object-position: center;
}

.team-directory .team-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.team-directory .team-grid article {
  grid-column: span 2;
}

.team-directory .team-grid article:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.team-directory .team-grid article > a {
  overflow-wrap: anywhere;
}

.team-directory .team-grid article > a[href^="mailto:"] {
  font-size: 12px;
}

@media (max-width: 980px) {
  .team-directory .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-directory .team-grid article,
  .team-directory .team-grid article:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .team-directory .team-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .team-catalog-hero .catalog-hero-media img,
  .updates-catalog-hero .catalog-hero-media img {
    object-position: 64% center;
  }

  .team-directory .team-grid {
    grid-template-columns: 1fr;
  }

  .team-directory .team-grid article:last-child {
    grid-column: auto;
  }

  .team-directory .team-grid article > a[href^="mailto:"] {
    font-size: 11px;
  }
}
