:root {
  --wine: #7a2638;
  --wine-deep: #4f1b27;
  --coral: #c7574c;
  --gold: #d8b46a;
  --gold-soft: #f0dfb8;
  --ivory: #fffdf8;
  --paper: #fbfaf6;
  --mist: #f1f5f4;
  --blush: #faefec;
  --sage: #e7f0eb;
  --ink: #25282b;
  --muted: #5d6569;
  --line: #d8dedc;
  --white: #fff;
  --shadow: 0 18px 48px rgba(37, 40, 43, 0.1);
  --content: min(1180px, calc(100vw - 64px));
  --section-space: clamp(72px, 8vw, 118px);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
}

body,
button,
input,
textarea,
select {
  font-family: Roboto, Arial, sans-serif;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1.2em;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1.14;
}

h3 {
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.25;
}

.kicker,
.overline,
.sectionLabel,
.articleCategory,
.contentMeta,
.topicLabel,
.researchPathLabel {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.gold {
  color: var(--gold) !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.buttonLight {
  background: var(--ivory);
  color: var(--wine);
}

.buttonLight:hover {
  background: var(--gold-soft);
}

.buttonDark {
  background: var(--wine);
  color: var(--white);
}

.textLink,
.aboutLink,
.contentCardLink,
.articleBack {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--wine);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.siteHeader,
.innerSiteHeader {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(122, 38, 56, 0.12);
  background: rgba(255, 253, 248, 0.98);
}

.logo,
.innerBrand {
  display: block;
  flex: 0 0 auto;
}

.logo img,
.innerBrand img {
  width: 142px;
  max-height: 52px;
  object-fit: contain;
}

.mainNav,
.innerMenu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.mainNav a,
.innerMenu a {
  position: relative;
  color: #3c4144;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mainNav a::after,
.innerMenu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mainNav a:hover::after,
.innerMenu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.navHome {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.navHome svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.languageToggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(122, 38, 56, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(80, 43, 47, 0.08);
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.languageToggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.languageToggle:hover {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
  transform: translateY(-1px);
}

.languageToggleSwitch {
  gap: 8px;
  min-height: 40px;
  padding: 5px 9px;
  border-color: rgba(48, 55, 58, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(28, 34, 36, 0.1);
}

.languageToggleSwitch:hover {
  border-color: rgba(48, 55, 58, 0.26);
  background: var(--white);
  color: var(--wine);
}

.languageFlag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 17px;
  line-height: 1;
  filter: grayscale(0.35);
  opacity: 0.5;
}

.languageFlag.isActive {
  filter: none;
  opacity: 1;
}

.languageTrack {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  border-radius: 999px;
  background: rgba(122, 38, 56, 0.16);
  box-shadow: inset 0 0 0 1px rgba(122, 38, 56, 0.16);
}

.languageTrack::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 2px 5px rgba(36, 8, 8, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.languageToggleSwitch.isEnglish .languageTrack {
  background: rgba(31, 111, 81, 0.18);
  box-shadow: inset 0 0 0 1px rgba(31, 111, 81, 0.16);
}

.languageToggleSwitch.isEnglish .languageTrack::after {
  transform: translateX(18px);
  background: var(--green);
}

.mobileMenuButton,
.mobileMenuPanel {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--wine-deep);
}

.heroImage,
.heroShade {
  position: absolute;
  inset: 0;
}

.heroImage {
  background-image: url("https://drhani.vn/wp-content/uploads/2026/07/hero-home-editorial-v2.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.heroShade {
  background:
    linear-gradient(90deg, rgba(45, 23, 28, 0.78) 0%, rgba(58, 28, 34, 0.56) 42%, rgba(58, 28, 34, 0.08) 76%),
    linear-gradient(0deg, rgba(35, 26, 28, 0.28), transparent 50%);
}

.heroContent {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin-inline: auto;
  padding: clamp(94px, 11vw, 148px) 0 176px;
}

.heroContent .overline {
  color: var(--gold-soft);
}

.heroContent h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 5.3vw, 66px);
}

.heroLead {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.heroContext {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
}

.heroContext span {
  position: relative;
}

.heroContext span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.heroPathStrip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 64px));
  margin: auto;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 -12px 40px rgba(36, 27, 29, 0.15);
}

.heroPathStrip a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 2px 16px;
  min-height: 120px;
  padding: 25px 28px;
  color: var(--ink);
  text-decoration: none;
}

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

.heroPathStrip span {
  grid-row: 1 / 3;
  color: var(--coral);
  font-size: 21px;
  font-weight: 700;
}

.heroPathStrip a:nth-child(2) span {
  color: #a47a25;
}

.heroPathStrip a:nth-child(3) span {
  color: #38725b;
}

.heroPathStrip strong {
  align-self: end;
  font-size: 20px;
  line-height: 1.22;
}

.heroPathStrip small {
  color: var(--muted);
  font-size: 14px;
}

.aboutSection,
.sectionIntro,
.sectionHeading,
.profileStory,
.careerSection,
.advisorySectionHeading,
.compactHeading {
  width: var(--content);
  margin: auto;
}

.aboutSection {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(48px, 7vw, 104px);
  padding: var(--section-space) 0;
}

.aboutStatement h2 {
  max-width: 720px;
}

.aboutStatement em {
  color: var(--wine);
  font-weight: 400;
}

.aboutDetails {
  align-self: end;
  padding-top: 38px;
  border-top: 4px solid var(--gold);
}

.aboutDetails .aboutLink {
  margin-top: 10px;
}

.credentialBand {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--content);
  margin: 0 auto var(--section-space);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credentialBand > div {
  position: relative;
  min-height: 156px;
  padding: 30px 26px;
}

.credentialBand > div + div {
  border-left: 1px solid var(--line);
}

.credentialBand > div::before {
  position: absolute;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 4px;
  background: var(--wine);
  content: "";
}

.credentialBand > div:nth-child(2)::before {
  background: var(--gold);
}

.credentialBand > div:nth-child(3)::before {
  background: #4d846d;
}

.credentialBand > div:nth-child(4)::before {
  background: var(--coral);
}

.credentialBand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 44px;
  line-height: 1;
}

.credentialBand span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.expertiseSection {
  padding: var(--section-space) 0;
  background: var(--mist);
}

.sectionIntro,
.sectionHeading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 50px;
}

.sectionIntro h2,
.sectionHeading h2 {
  max-width: 720px;
}

.sectionNote,
.insightsDescription {
  margin: 0;
  padding: 0 0 8px 28px;
  border-left: 3px solid var(--gold);
}

.expertiseAtlas {
  width: var(--content);
  margin: auto;
}

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

.expertiseKey {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  min-height: 208px;
  padding: 30px 28px 30px 0;
  border-top: 1px solid var(--line);
}

.expertiseKey:nth-child(2),
.expertiseKey:nth-child(4) {
  transform: translateY(30px);
}

.expertiseKey > span {
  color: rgba(122, 38, 56, 0.22);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.9;
}

.expertiseMeta {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.expertiseKey:nth-child(2) > span {
  color: rgba(164, 122, 37, 0.3);
}

.expertiseKey:nth-child(3) > span {
  color: rgba(56, 114, 91, 0.28);
}

.expertiseKey:nth-child(4) > span {
  color: rgba(37, 40, 43, 0.22);
}

.expertiseKey h3 {
  margin-bottom: 12px;
}

.expertiseKey p {
  margin: 0;
  font-size: 17px;
}

.methodSection {
  padding: clamp(58px, 7vw, 90px) 32px;
  background: linear-gradient(120deg, var(--wine) 0%, #96384a 62%, var(--coral) 100%);
}

.methodQuote {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  width: min(930px, 100%);
  margin: auto;
}

.methodQuote > span {
  color: var(--gold-soft);
  font-size: 82px;
  line-height: 0.8;
}

.methodQuote blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 43px);
  font-weight: 500;
  line-height: 1.28;
}

.insightsSection {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.insightsHeading {
  margin-bottom: 30px;
}

.articleRowHeader {
  display: flex;
  justify-content: flex-end;
  width: var(--content);
  margin: 0 auto 18px;
}

.sliderControls {
  display: flex;
  gap: 8px;
}

.sliderControls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.articleGrid {
  display: grid;
  grid-auto-columns: minmax(300px, 0.78fr);
  grid-auto-flow: column;
  gap: 22px;
  width: var(--content);
  margin: auto;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.articleCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  scroll-snap-align: start;
}

.articleVisual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blush);
}

.articleVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.articleCard:hover .articleVisual img {
  transform: scale(1.025);
}

.articleVisual span {
  display: grid;
  width: 100%;
  height: 100%;
  color: rgba(122, 38, 56, 0.24);
  font-size: 78px;
  font-weight: 700;
  place-items: center;
}

.articleBody {
  padding: 26px;
}

.articleBody h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.articleBody h3 a {
  text-decoration: none;
}

.articleExcerpt {
  margin: 0;
  font-size: 16px;
}

.contactSection,
.profileCta,
.innerCta {
  padding: clamp(66px, 8vw, 104px) 32px;
  background:
    linear-gradient(120deg, rgba(79, 27, 39, 0.98), rgba(122, 38, 56, 0.94)),
    var(--wine);
  text-align: center;
}

.contactSection h2,
.profileCta h2,
.innerCta h2 {
  max-width: 780px;
  margin: 0 auto 30px;
  color: var(--white);
}

.siteFooter,
.innerFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 160px;
  padding: 32px;
  background: #f7f3ed;
  text-align: center;
}

.siteFooter img,
.innerFooterBrand img {
  width: 140px;
  max-height: 54px;
  object-fit: contain;
}

.footerCopyright {
  margin: 0;
  color: #72777a;
  font-size: 13px;
}

/* Shared inner-page heroes */
.profileHero,
.researchHeroNew,
.advisoryHero,
.strategyHero,
.contactHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  min-height: 510px;
  overflow: hidden;
  background: var(--blush);
}

.profileHero > img,
.researchHeroNew > img,
.advisoryHero > img,
.strategyHero > img,
.contactHero > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 96px) clamp(36px, 6vw, 88px);
}

.profileHero > div,
.advisoryHeroContent {
  order: -1;
  background: linear-gradient(145deg, var(--wine-deep), var(--wine));
}

.profileHero h1,
.advisoryHero h1 {
  color: var(--white);
}

.profileHero p,
.advisoryHeroContent p {
  color: rgba(255, 255, 255, 0.82);
}

.profileHero .kicker,
.advisoryHero .kicker {
  color: var(--gold-soft);
}

.researchHeroNew {
  background: var(--sage);
}

.researchHeroNew > div {
  background: linear-gradient(140deg, #e7f0eb, #f8f5eb);
}

.strategyHero {
  background: var(--blush);
}

.strategyHero > div {
  background: linear-gradient(145deg, #f8ece9, #fffaf1);
}

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

.contactHero > div {
  background: linear-gradient(145deg, #f1f5f4, #fffaf1);
}

.profileHero h1,
.researchHeroNew h1,
.advisoryHero h1,
.strategyHero h1,
.contactHero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.4vw, 56px);
}

.profileHero p:last-child,
.researchHeroNew p:last-child,
.advisoryHeroContent p,
.strategyHero p:last-child,
.contactHero p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 18px;
}

.advisoryHeroContent .button {
  align-self: flex-start;
  margin-top: 28px;
}

/* About */
.profileStory {
  display: grid;
  grid-template-columns: 0.3fr minmax(0, 1fr);
  gap: 70px;
  padding: var(--section-space) 0;
}

.profileStory > div {
  max-width: 820px;
}

.profileStory h2 {
  margin-bottom: 28px;
}

.profilePhilosophy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 98px);
  padding: clamp(70px, 8vw, 108px) max(32px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--wine-deep), var(--wine));
}

.profilePhilosophy h2 {
  color: var(--white);
}

.philosophyExplanation {
  padding-left: 36px;
  border-left: 2px solid var(--gold);
}

.philosophyExplanation p {
  color: rgba(255, 255, 255, 0.84);
}

.academicSnapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--content);
  margin: var(--section-space) auto;
  border-top: 1px solid var(--line);
}

.academicSnapshot article {
  position: relative;
  padding: 32px 24px 10px 0;
}

.academicSnapshot article::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 1px var(--wine);
  content: "";
}

.academicSnapshot strong {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 32px;
}

.academicSnapshot h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.academicSnapshot p {
  font-size: 16px;
}

.profileEvidence {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: stretch;
  width: var(--content);
  margin: 0 auto var(--section-space);
  background: var(--white);
  box-shadow: var(--shadow);
}

.profileEvidence > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.profileEvidence > div {
  padding: clamp(46px, 6vw, 76px) clamp(34px, 5vw, 70px) clamp(46px, 6vw, 76px) 0;
}

.profileEvidence h2 {
  margin-bottom: 26px;
}

.careerSection {
  padding-bottom: var(--section-space);
}

.careerSection > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.careerTimeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--wine);
}

.careerTimeline article {
  position: relative;
  padding: 34px 24px 0 0;
}

.careerTimeline article + article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.careerTimeline span {
  display: block;
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 24px;
  font-weight: 700;
}

.careerTimeline h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.careerTimeline p {
  font-size: 16px;
}

/* Teaching and advisory */
.advisoryProof {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  width: var(--content);
  margin: var(--section-space) auto 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--mist);
}

.advisoryProof > div {
  padding: 36px 42px;
}

.advisoryProofMetric {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--wine);
}

.advisoryProofMetric strong {
  color: var(--gold-soft);
  font-size: 58px;
  line-height: 1;
}

.advisoryProofMetric span {
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.advisoryProofScope span {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.advisoryProofScope p {
  margin: 0;
}

.teachingPortfolioSection {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 0 74px;
  width: var(--content);
  margin: var(--section-space) auto;
}

.teachingIllustration {
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--blush);
}

.teachingIllustration img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.teachingIllustration figcaption {
  padding: 22px 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.teachingPortfolioHeading {
  padding: 10px 0 30px;
}

.teachingPortfolioHeading h2 {
  margin-bottom: 18px;
}

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

.teachingPortfolioList article {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.teachingPortfolioList span {
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.teachingPortfolioList h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.teachingPortfolioList p {
  grid-column: 2;
  margin: -4px 0 0;
  font-size: 16px;
}

.advisoryTopics {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.enterpriseTrainingVisual {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: var(--content);
  margin: auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--wine-deep);
}

.enterpriseTrainingVisual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.enterpriseTrainingVisual > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.enterpriseTrainingVisual h2 {
  color: var(--white);
}

.enterpriseTrainingVisual p:last-child {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.advisoryTopicGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 60px;
  width: var(--content);
  margin: 54px auto 0;
}

.advisoryTopicGrid article {
  position: relative;
  padding: 28px 0 28px 52px;
  border-top: 1px solid var(--line);
}

.advisoryTopicGrid article::before {
  position: absolute;
  top: 34px;
  left: 0;
  width: 27px;
  height: 3px;
  background: var(--coral);
  content: "";
}

.advisoryTopicGrid h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.advisoryTopicGrid p {
  margin: 0;
  font-size: 16px;
}

.advisoryProcess {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  width: var(--content);
  margin: var(--section-space) auto;
}

.advisoryProcess ol,
.researchProcess ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisoryProcess li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.advisoryProcess li:last-child {
  border-bottom: 1px solid var(--line);
}

.advisoryProcess li > span {
  color: var(--wine);
  font-size: 26px;
  font-weight: 700;
}

.advisoryProcess h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.advisoryProcess p {
  margin: 0;
  font-size: 16px;
}

.advisoryClients {
  padding: var(--section-space) 0;
  background: var(--sage);
}

.advisorySectionHeading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.advisorySectionHeading > p {
  margin: 0;
}

.advisoryClientGroups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: var(--content);
  margin: auto;
}

.advisoryClientGroups article {
  padding: 30px;
  border-left: 4px solid var(--wine);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.78);
}

.advisoryClientGroups article:nth-child(2) {
  border-left-color: var(--gold);
}

.advisoryClientGroups article:nth-child(3) {
  border-left-color: #4d846d;
}

.advisoryClientGroups article:nth-child(4) {
  border-left-color: var(--coral);
}

.advisoryClientGroups h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.advisoryClientGroups p {
  margin: 0;
  font-size: 16px;
}

/* Research */
.startPaths,
.researchThemes,
.researchEvidence,
.researchProcess {
  padding: var(--section-space) 0;
}

.compactHeading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: end;
  margin-bottom: 42px;
}

.startGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: var(--content);
  margin: auto;
}

.startGrid article {
  min-height: 310px;
  padding: 34px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.startGrid article:nth-child(2) {
  background: var(--blush);
  transform: translateY(22px);
}

.startGrid article:nth-child(3) {
  background: var(--sage);
}

.startGrid h3 {
  margin: 42px 0 18px;
}

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

.researchDirectionVisual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  width: var(--content);
  margin: auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--wine-deep);
}

.researchDirectionVisual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.researchDirectionVisual figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.researchDirectionVisual h2 {
  color: var(--white);
}

.researchDirectionVisual p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.researchThemeList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  width: var(--content);
  margin: 48px auto 0;
}

.researchThemeList article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.researchThemeList h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.researchThemeList p {
  margin: 0;
  font-size: 16px;
}

.researchEvidence {
  background: var(--ivory);
}

.researchNumbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--content);
  margin: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.researchNumbers article {
  padding: 32px 26px;
}

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

.researchNumbers strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 44px;
}

.researchNumbers span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.orcidIdentity {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 60px;
  width: var(--content);
  margin: 54px auto 0;
  padding: 42px;
  border-radius: 6px;
  background: var(--wine-deep);
}

.orcidIdentity h2 {
  color: var(--white);
  font-size: 34px;
}

.orcidIdentity > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.orcidIdentity a {
  color: var(--gold-soft);
}

.orcidPublications {
  width: var(--content);
  margin: 56px auto 0;
}

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

.publicationList article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.publicationList article > span {
  color: var(--wine);
  font-size: 18px;
  font-weight: 700;
}

.publicationList h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.publicationList p {
  margin: 2px 0;
  font-size: 15px;
}

.publicationAuthors {
  color: #70777a;
}

.publicationBadge {
  display: inline-block;
  color: var(--wine);
  font-size: 13px;
  text-transform: uppercase;
}

.researchOutputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: var(--content);
  margin: 58px auto 0;
}

.researchOutputs article {
  padding: 28px;
  border-radius: 6px;
  background: var(--blush);
}

.researchOutputs article:nth-child(2) {
  background: var(--sage);
}

.researchOutputs article:nth-child(3) {
  background: #f6efd9;
}

.researchOutputs span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.researchOutputs h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.researchOutputs p {
  margin: 0;
  font-size: 15px;
}

.researchProcess {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  width: var(--content);
  margin: auto;
}

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

.researchProcess li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.researchProcess li > span {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 32px;
  font-weight: 700;
}

.researchProcess strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.researchProcess p {
  margin: 0;
  font-size: 16px;
}

/* Knowledge */
.strategyPrinciples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: var(--content);
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strategyPrinciples > div {
  padding: 24px;
}

.strategyPrinciples > div + div {
  border-left: 1px solid var(--line);
}

.strategyPrinciples span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.strategyPrinciples strong {
  font-size: 18px;
}

.knowledgeCategories {
  padding: var(--section-space) 0 0;
}

.knowledgeCategories > div {
  width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.knowledgeCategoryList {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px !important;
  border-top: 1px solid var(--line);
}

.knowledgeCategoryList a {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 140px;
  padding: 24px 18px;
  color: var(--ink);
  text-decoration: none;
}

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

.knowledgeCategoryList span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
}

.knowledgeCategoryList strong {
  font-size: 17px;
  line-height: 1.35;
}

.strategyArticles,
.knowledgeListing,
.relatedSection {
  width: var(--content);
  margin: auto;
  padding: var(--section-space) 0;
}

.strategyArticleLabel {
  margin-bottom: 26px;
}

.articleArchiveHeading,
.archiveHeadingSplit {
  margin-bottom: 30px;
}

.articleArchivePageTitle,
.archivePageTitle {
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--wine);
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: none;
}

.articleArchiveCategoryTitle,
.archiveCategoryTitle {
  margin: 0;
  color: var(--wine);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.articleArchiveHeading.category-market .articleArchiveCategoryTitle,
.archiveHeadingSplit.category-market-notes .archiveCategoryTitle {
  color: #15564f;
}

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

.contentCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.contentCardVisual {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blush);
  text-decoration: none;
}

.contentCardVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.contentCard:hover .contentCardVisual img {
  transform: scale(1.025);
}

.contentCardVisual span {
  display: grid;
  width: 100%;
  height: 100%;
  color: rgba(122, 38, 56, 0.22);
  font-size: 70px;
  font-weight: 700;
  place-items: center;
}

.contentCardBody {
  padding: 24px;
}

.contentCardBody h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.contentCardBody h2 a {
  text-decoration: none;
}

.contentCardBody > p:not(.contentMeta) {
  margin-bottom: 18px;
  font-size: 16px;
}

.contentCardLink {
  font-size: 15px;
}

/* Contact */
.contactLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 7vw, 94px);
  width: var(--content);
  margin: var(--section-space) auto;
}

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

.contactOptions article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contactOptions span {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contactOptions h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.contactOptions p {
  margin: 0;
  font-size: 16px;
}

.contactForm {
  align-self: start;
  padding: 40px;
  border-radius: 6px;
  background: var(--mist);
}

.contactForm h2 {
  margin-bottom: 12px;
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c9d0cd;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}

.contactForm textarea {
  min-height: 150px;
  resize: vertical;
}

.drhaniContactForm {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.formField {
  display: grid;
  gap: 7px;
}

.formField label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.formNotice {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
}

.formNoticeSuccess {
  border-color: rgba(35, 111, 87, 0.35);
  background: rgba(35, 111, 87, 0.08);
}

.formNoticeError {
  border-color: rgba(122, 38, 56, 0.35);
  background: rgba(122, 38, 56, 0.08);
}

.contactForm input[type="submit"],
.contactForm button[type="submit"] {
  width: auto;
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

/* Articles, archives and utility pages */
.knowledgeHero,
.articleHero,
.notFoundContent,
.standardHero {
  width: var(--content);
  margin: auto;
  padding: var(--section-space) 0;
}

.knowledgeHero,
.standardHero {
  max-width: 880px;
  margin-left: max(32px, calc((100vw - 1180px) / 2));
}

.articleHero h1,
.knowledgeHero h1,
.notFoundContent h1,
.standardHero h1 {
  max-width: 940px;
  font-size: clamp(42px, 4.5vw, 58px);
}

.articleHero > p:last-child,
.knowledgeHero > p:last-child,
.notFoundContent > p {
  max-width: 760px;
  margin-top: 24px;
}

.articleBack {
  margin-bottom: 42px;
  font-size: 15px;
}

.articleByline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.articleFeatured {
  width: var(--content);
  margin: 0 auto 70px;
}

.articleFeatured img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.articleLayout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
  width: var(--content);
  margin: auto;
}

.articleAside {
  align-self: start;
  padding-top: 12px;
  border-top: 3px solid var(--wine);
}

.articleAside p {
  font-size: 15px;
}

.entryContent {
  min-width: 0;
}

.entryContent p,
.entryContent li {
  font-size: 18px;
  line-height: 1.72;
}

.entryContent h2 {
  margin: 1.6em 0 0.65em;
  font-size: 34px;
}

.entryContent h3 {
  margin: 1.5em 0 0.55em;
  font-size: 25px;
}

.entryContent img {
  height: auto;
}

.articleNavigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(760px, calc(100% - 64px));
  margin: 80px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.articleNavigation a {
  text-decoration: none;
}

.articleNavigation span {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 13px;
  text-transform: uppercase;
}

.articleNavigation strong {
  font-size: 17px;
}

.archivePagination {
  margin-top: 46px;
}

.archivePagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.archivePagination a,
.archivePagination span {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  place-items: center;
}

.archivePagination .current {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.emptyState {
  padding: 60px;
  border-radius: 6px;
  background: var(--mist);
  text-align: center;
}

.notFoundPage {
  min-height: 100vh;
  background: var(--blush);
}

.notFoundContent {
  min-height: 560px;
}

.notFoundContent > div {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}

.standardContent {
  width: min(820px, calc(100% - 64px));
  margin: 0 auto var(--section-space);
}

@media (max-width: 1040px) {
  :root {
    --content: min(100% - 48px, 1180px);
  }

  .mainNav,
  .innerMenu {
    gap: 16px;
  }

  .mainNav a,
  .innerMenu a {
    font-size: 14px;
  }

  .heroPathStrip {
    width: calc(100% - 48px);
  }

  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    grid-template-columns: 1fr 0.86fr;
  }

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

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

  .knowledgeCategoryList a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .knowledgeCategoryList a:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  p {
    font-size: 17px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .mainNav,
  .innerMenu {
    display: none;
  }

  .languageToggle {
    margin-left: auto;
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .languageToggle svg {
    width: 16px;
    height: 16px;
  }

  .mobileMenuButton {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobileMenuButton span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wine);
  }

  .mobileMenuPanel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 40;
    padding: 14px 24px 22px;
    border-top: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .mobileMenuPanel:not([hidden]) {
    display: grid;
  }

  .mobileMenuPanel a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .aboutSection,
  .sectionIntro,
  .sectionHeading,
  .profileStory,
  .profilePhilosophy,
  .profileEvidence,
  .advisoryProcess,
  .researchProcess,
  .contactLayout {
    grid-template-columns: 1fr;
  }

  .sectionNote,
  .insightsDescription {
    padding-left: 20px;
  }

  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    grid-template-columns: 1fr 0.78fr;
    min-height: 470px;
  }

  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img {
    min-height: 470px;
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    padding: 44px 32px;
  }

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

  .profileEvidence > div {
    padding: 42px;
  }

  .teachingPortfolioSection {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 42px;
  }

  .teachingIllustration {
    grid-row: auto;
  }

  .teachingPortfolioHeading,
  .teachingPortfolioList {
    grid-column: 2;
  }

  .enterpriseTrainingVisual,
  .researchDirectionVisual {
    grid-template-columns: 1fr 0.85fr;
  }

  .enterpriseTrainingVisual > div,
  .researchDirectionVisual figcaption {
    padding: 36px;
  }

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

  .articleAside {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100% - 40px);
    --section-space: 68px;
  }

  body {
    font-size: 17px;
  }

  p,
  .entryContent p,
  .entryContent li {
    font-size: 17px;
    line-height: 1.65;
  }

  h1,
  .heroContent h1,
  .profileHero h1,
  .researchHeroNew h1,
  .advisoryHero h1,
  .strategyHero h1,
  .contactHero h1,
  .articleHero h1,
  .knowledgeHero h1,
  .notFoundContent h1,
  .standardHero h1 {
    font-size: clamp(37px, 10vw, 44px);
    line-height: 1.1;
  }

  h2,
  .sectionIntro h2,
  .sectionHeading h2 {
    font-size: 31px;
    line-height: 1.18;
  }

  h3 {
    font-size: 23px;
  }

  .siteHeader,
  .innerSiteHeader {
    min-height: 72px;
    padding: 10px 20px;
  }

  .logo img,
  .innerBrand img {
    width: 126px;
  }

  .hero {
    min-height: 660px;
  }

  .heroImage {
    background-position: 60% center;
  }

  .heroShade {
    background:
      linear-gradient(90deg, rgba(45, 23, 28, 0.82), rgba(58, 28, 34, 0.3)),
      linear-gradient(0deg, rgba(35, 26, 28, 0.38), transparent 55%);
  }

  .heroContent {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding: 74px 0 150px;
    text-align: center;
  }

  .heroLead {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
  }

  .heroContext {
    justify-content: center;
    gap: 8px 18px;
    font-size: 12px;
  }

  .heroContext span + span::before {
    left: -11px;
  }

  .heroPathStrip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .heroPathStrip a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    min-height: 112px;
    padding: 12px 9px;
    text-align: center;
  }

  .heroPathStrip span {
    font-size: 15px;
  }

  .heroPathStrip strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .heroPathStrip small {
    font-size: 10px;
  }

  .aboutSection {
    gap: 38px;
  }

  .aboutDetails {
    padding-top: 24px;
  }

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

  .credentialBand > div {
    min-height: 138px;
    padding: 26px 20px;
  }

  .credentialBand > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .credentialBand > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .credentialBand strong {
    font-size: 38px;
  }

  .credentialBand span {
    font-size: 14px;
  }

  .sectionIntro,
  .sectionHeading {
    gap: 28px;
    margin-bottom: 38px;
  }

  .expertiseLegend {
    display: block;
  }

  .expertiseKey,
  .expertiseKey:nth-child(2),
  .expertiseKey:nth-child(4) {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 0;
    padding: 25px 0;
    transform: none;
  }

  .expertiseKey > span {
    font-size: 54px;
  }

  .expertiseKey p {
    font-size: 16px;
  }

  .methodSection {
    padding: 58px 20px;
  }

  .methodQuote {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .methodQuote > span {
    font-size: 58px;
  }

  .methodQuote blockquote {
    font-size: 28px;
  }

  .articleGrid {
    grid-auto-columns: 86%;
  }

  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img {
    order: 0;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    order: 1;
    min-height: 360px;
    padding: 48px 20px;
  }

  .profileHero p:last-child,
  .researchHeroNew p:last-child,
  .advisoryHeroContent p,
  .strategyHero p:last-child,
  .contactHero p:last-child {
    font-size: 17px;
  }

  .profileStory {
    gap: 24px;
  }

  .profilePhilosophy {
    gap: 34px;
    padding: 62px 20px;
  }

  .philosophyExplanation {
    padding-left: 22px;
  }

  .academicSnapshot,
  .careerTimeline,
  .researchNumbers {
    grid-template-columns: 1fr;
  }

  .academicSnapshot article,
  .careerTimeline article,
  .careerTimeline article + article,
  .researchNumbers article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .profileEvidence {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .profileEvidence > img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .profileEvidence > div {
    padding: 34px 24px;
  }

  .careerTimeline {
    border-top-width: 2px;
  }

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

  .advisoryProof > div {
    padding: 28px 24px;
  }

  .advisoryProofMetric strong {
    font-size: 46px;
  }

  .teachingPortfolioSection {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .teachingIllustration img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .teachingPortfolioHeading {
    padding: 42px 0 24px;
  }

  .teachingPortfolioList article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .teachingPortfolioList p {
    grid-column: auto;
    margin: 0;
  }

  .enterpriseTrainingVisual,
  .researchDirectionVisual {
    grid-template-columns: 1fr;
  }

  .enterpriseTrainingVisual img,
  .researchDirectionVisual img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .enterpriseTrainingVisual > div,
  .researchDirectionVisual figcaption {
    padding: 34px 24px;
  }

  .advisoryTopicGrid,
  .advisoryClientGroups,
  .researchThemeList,
  .researchOutputs,
  .researchProcess ol,
  .startGrid,
  .contentGrid {
    grid-template-columns: 1fr;
  }

  .advisoryTopicGrid article {
    padding-left: 42px;
  }

  .advisoryProcess {
    gap: 34px;
  }

  .advisorySectionHeading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compactHeading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .startGrid article,
  .startGrid article:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .startGrid h3 {
    margin-top: 26px;
  }

  .researchNumbers article + article {
    border-left: 0;
  }

  .orcidIdentity {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .orcidIdentity h2 {
    font-size: 28px;
  }

  .publicationList article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .publicationList h3 {
    font-size: 18px;
  }

  .strategyPrinciples {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .strategyPrinciples > div {
    padding: 18px 10px;
    text-align: center;
  }

  .strategyPrinciples span {
    font-size: 10px;
  }

  .strategyPrinciples strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .knowledgeCategoryList {
    display: block;
  }

  .knowledgeCategoryList a,
  .knowledgeCategoryList a + a,
  .knowledgeCategoryList a:nth-child(4),
  .knowledgeCategoryList a:nth-child(5) {
    flex-direction: row;
    gap: 16px;
    min-height: 0;
    padding: 18px 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .knowledgeCategoryList strong {
    font-size: 17px;
  }

  .contactLayout {
    gap: 42px;
  }

  .contactForm {
    padding: 28px 22px;
  }

  .articleHero,
  .knowledgeHero,
  .notFoundContent,
  .standardHero {
    padding: 62px 0;
  }

  .knowledgeHero,
  .standardHero {
    margin-left: 20px;
  }

  .articleFeatured {
    width: 100%;
    margin-bottom: 48px;
  }

  .articleLayout {
    width: calc(100% - 40px);
  }

  .articleNavigation {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .emptyState {
    padding: 40px 22px;
  }

  .notFoundContent > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .siteFooter,
  .innerFooter {
    min-height: 145px;
    padding: 28px 20px;
  }
}

/* Editorial rebuild 4.1 */
:root {
  --wine: #8a2232;
  --wine-deep: #481923;
  --coral: #c84f45;
  --gold: #c69a43;
  --gold-soft: #f2dda8;
  --ivory: #fffefa;
  --paper: #fbfaf7;
  --mist: #edf2f1;
  --blush: #f8eae7;
  --sage: #e1ece7;
  --ink: #262a2d;
  --muted: #535d62;
  --line: #d6dcda;
  --shadow: 0 16px 38px rgba(38, 42, 45, 0.09);
  --content: min(1360px, calc(100vw - 48px));
  --section-space: clamp(54px, 5.5vw, 78px);
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-size: 18px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

h1 {
  font-size: clamp(42px, 4.4vw, 58px);
}

h2 {
  font-size: clamp(30px, 2.8vw, 40px);
}

h3 {
  font-size: clamp(21px, 1.7vw, 26px);
}

.siteHeader,
.innerSiteHeader {
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1360px) / 2));
  background: rgba(255, 254, 250, 0.98);
}

.mainNav,
.innerMenu {
  gap: clamp(15px, 1.7vw, 28px);
}

/* Homepage: one visual hierarchy, fewer words */
.hero {
  min-height: 610px;
}

.heroShade {
  background:
    linear-gradient(90deg, rgba(38, 21, 25, 0.8) 0%, rgba(53, 26, 31, 0.58) 43%, rgba(53, 26, 31, 0.06) 78%),
    linear-gradient(0deg, rgba(28, 22, 23, 0.24), transparent 48%);
}

.heroContent {
  width: var(--content);
  padding: 100px 0 150px;
}

.heroContent h1 {
  max-width: 680px;
  font-size: clamp(46px, 4.8vw, 64px);
}

.heroLead {
  max-width: 620px;
  margin-top: 22px;
  font-size: 19px;
}

.heroPathStrip {
  width: min(1040px, calc(100% - 48px));
  box-shadow: 0 -10px 34px rgba(36, 27, 29, 0.12);
}

.heroPathStrip a {
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  padding: 20px 26px;
}

.heroPathStrip span {
  grid-row: auto;
  font-size: 18px;
}

.heroPathStrip strong {
  align-self: center;
  font-size: 18px;
}

.homeProfile {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  grid-template-areas:
    "visual copy"
    "metrics metrics";
  width: var(--content);
  margin: var(--section-space) auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.homeProfileVisual {
  position: relative;
  grid-area: visual;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

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

.homeProfileVisual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 300px;
  padding: 20px 24px;
  background: rgba(72, 25, 35, 0.94);
  color: var(--white);
}

.homeProfileVisual figcaption strong {
  color: var(--gold-soft);
  font-size: 38px;
  line-height: 1;
}

.homeProfileVisual figcaption span {
  font-size: 14px;
  line-height: 1.4;
}

.homeProfileCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: copy;
  padding: 50px clamp(34px, 4vw, 64px);
}

.homeProfileCopy h2 {
  margin-bottom: 22px;
}

.homeProfileCopy p:not(.kicker) {
  max-width: 620px;
}

.homeProfileCopy .aboutLink {
  align-self: flex-start;
  margin-top: 4px;
}

.homeMetrics {
  display: grid;
  grid-area: metrics;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #f5f7f6;
}

.homeMetrics div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 28px;
}

.homeMetrics div + div {
  border-left: 1px solid var(--line);
}

.homeMetrics strong {
  color: var(--wine);
  font-size: 34px;
  line-height: 1;
}

.homeMetrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.homeExpertise {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(380px, 0.92fr) minmax(430px, 1.1fr);
  width: 100%;
  background: var(--mist);
}

.homeExpertiseIntro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px clamp(28px, 4vw, 72px);
  background: var(--wine-deep);
}

.homeExpertiseIntro h2,
.homeExpertiseIntro p {
  color: var(--white);
}

.homeExpertiseIntro .kicker {
  color: var(--gold-soft);
}

.homeExpertiseIntro > p:last-child {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.homeExpertiseCanvas {
  min-height: 510px;
  overflow: hidden;
}

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

.homeExpertiseList {
  display: grid;
  align-content: center;
  padding: 26px clamp(28px, 4vw, 62px);
}

.homeExpertiseList article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid #cbd2d0;
}

.homeExpertiseList article:first-child {
  border-top: 1px solid #cbd2d0;
}

.homeExpertiseList article > span {
  color: rgba(138, 34, 50, 0.28);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.homeExpertiseList article:nth-child(2) > span {
  color: rgba(166, 116, 24, 0.36);
}

.homeExpertiseList article:nth-child(3) > span {
  color: rgba(45, 112, 84, 0.34);
}

.homeExpertiseList article:nth-child(4) > span {
  color: rgba(38, 42, 45, 0.26);
}

.homeExpertiseList h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.homeExpertiseList p {
  margin: 0;
  font-size: 14px;
}

.insightsSection {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.insightsHeading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: end;
  width: var(--content);
  margin: 0 auto 30px;
}

.insightsHeading h2 {
  white-space: nowrap;
}

.insightsHeading .aboutLink {
  margin-bottom: 4px;
  white-space: nowrap;
}

.articleGrid {
  grid-auto-columns: minmax(285px, 0.68fr);
  gap: 18px;
}

.articleCard {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.articleVisual {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
}

.articleBody {
  padding: 18px 2px 0;
}

.articleBody h3 {
  margin: 0;
  font-size: 21px;
}

.contactSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  text-align: left;
}

.contactSection h2 {
  margin: 0;
  font-size: 30px;
}

.contactSection .kicker {
  margin-bottom: 8px;
}

/* Inner pages: full-width bands and denser reading rhythm */
.profileHero,
.researchHeroNew,
.advisoryHero,
.strategyHero,
.contactHero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  width: 100%;
  min-height: 450px;
}

.profileHero > img,
.researchHeroNew > img,
.advisoryHero > img,
.strategyHero > img,
.contactHero > img {
  min-height: 450px;
}

.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  padding: 54px max(30px, calc((100vw - 1360px) / 2));
}

.profileHero h1,
.researchHeroNew h1,
.advisoryHero h1,
.strategyHero h1,
.contactHero h1 {
  max-width: 660px;
  font-size: clamp(40px, 4vw, 52px);
}

.profileHero p:last-child,
.researchHeroNew p:last-child,
.advisoryHeroContent p,
.strategyHero p:last-child,
.contactHero p:last-child {
  max-width: 650px;
  margin-top: 20px;
  font-size: 18px;
}

.profileStory {
  grid-template-columns: 0.24fr minmax(0, 1fr);
  gap: 48px;
  padding: 58px 0;
}

.profileStory > div {
  max-width: 920px;
  columns: 2;
  column-gap: 46px;
}

.profileStory h2 {
  column-span: all;
  margin-bottom: 22px;
}

.profileIdentity {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1fr;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
  background: var(--mist);
}

.profileIdentity div {
  min-height: 116px;
  padding: 26px 30px;
}

.profileIdentity div + div {
  border-left: 1px solid var(--line);
}

.profileIdentity span {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.profileIdentity strong {
  font-size: 18px;
  line-height: 1.4;
}

.profilePhilosophy {
  gap: 64px;
  padding: 58px max(24px, calc((100vw - 1360px) / 2));
}

.academicSnapshot {
  margin: 58px auto;
}

.academicSnapshot article {
  padding-top: 26px;
}

.profileEvidence {
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  width: 100%;
  margin-bottom: 58px;
  box-shadow: none;
}

.profileEvidence > img {
  min-height: 560px;
  object-position: center top;
}

.profileEvidence > div {
  padding: 52px max(32px, calc((100vw - 1360px) / 2)) 52px 58px;
  background: var(--blush);
}

.careerSection {
  padding-bottom: 58px;
}

.careerTimeline article {
  padding-top: 26px;
}

/* Teaching */
.advisoryProof {
  margin: 48px auto 0;
}

.teachingPortfolioSection {
  gap: 0 58px;
  width: 100%;
  margin: 58px 0;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
}

.teachingIllustration {
  border-radius: 0;
}

.teachingIllustration img {
  height: 470px;
}

.teachingPortfolioHeading {
  padding-top: 0;
}

.teachingPortfolioList article {
  padding: 17px 0;
}

.advisoryTopics {
  padding: 58px 0;
}

.enterpriseTrainingVisual {
  width: 100%;
  border-radius: 0;
}

.enterpriseTrainingVisual img {
  height: 390px;
}

.enterpriseTrainingVisual > div {
  padding: 46px max(28px, calc((100vw - 1360px) / 2));
}

.advisoryTopicGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 42px;
  margin-top: 42px;
}

.advisoryTopicGrid article {
  padding: 22px 0 22px 38px;
}

.advisoryTopicGrid article::before {
  top: 31px;
  width: 20px;
}

.advisorySkillRail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  width: var(--content);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.advisorySkillRail span {
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
}

.advisoryProcess {
  gap: 54px;
  margin: 58px auto;
}

.advisoryProcess li {
  padding: 18px 0;
}

.advisoryClients {
  padding: 58px 0;
}

.advisoryClientGroups {
  gap: 0 50px;
}

.advisoryClientGroups article,
.advisoryClientGroups article:nth-child(2),
.advisoryClientGroups article:nth-child(3),
.advisoryClientGroups article:nth-child(4) {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid #c8d5cf;
  border-radius: 0;
  background: transparent;
}

/* Research */
.startPaths,
.researchThemes,
.researchEvidence,
.researchProcess {
  padding: 58px 0;
}

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

.startGrid article,
.startGrid article:nth-child(2),
.startGrid article:nth-child(3) {
  min-height: 230px;
  padding: 28px 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

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

.startGrid h3 {
  margin: 24px 0 12px;
}

.researchDirectionVisual {
  width: 100%;
  border-radius: 0;
}

.researchDirectionVisual img {
  height: 400px;
}

.researchDirectionVisual figcaption {
  padding: 46px max(28px, calc((100vw - 1360px) / 2));
}

.researchThemeList {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 38px;
}

.researchThemeList article {
  padding: 20px 0;
}

.researchNumbers article {
  padding: 24px 26px;
}

.orcidIdentity {
  margin-top: 38px;
  padding: 32px 38px;
  border-radius: 0;
}

.orcidPublications {
  margin-top: 38px;
}

.publicationList article {
  padding: 19px 0;
}

.researchOutputs {
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.researchOutputs article,
.researchOutputs article:nth-child(2),
.researchOutputs article:nth-child(3) {
  padding: 24px 28px;
  border-radius: 0;
  background: transparent;
}

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

.researchProcess {
  gap: 54px;
}

/* Knowledge */
.strategyHero {
  background: var(--wine-deep);
}

.strategyHero > div {
  background: linear-gradient(145deg, var(--wine-deep), #742334);
}

.strategyHero h1,
.strategyHero p:last-child {
  color: var(--white);
}

.strategyHero .kicker {
  color: var(--gold-soft);
}

.knowledgeCategories {
  display: grid;
  grid-template-columns: minmax(250px, 0.35fr) minmax(0, 1.65fr);
  gap: 46px;
  align-items: end;
  width: var(--content);
  margin: 0 auto;
  padding: 48px 0 20px;
}

.knowledgeCategories > div {
  width: auto;
  margin: 0;
}

.knowledgeCategories h2 {
  font-size: 30px;
}

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

.knowledgeFilters button,
.knowledgeFilters a {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid #cdd3d1;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.knowledgeFilters button:hover,
.knowledgeFilters a:hover,
.knowledgeFilters button.isActive,
.knowledgeFilters a.isActive {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.strategyArticles {
  padding: 34px 0 58px;
}

.strategyArticles .contentGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.strategyArticles .contentCard {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.strategyArticles .contentCardVisual {
  border-radius: 4px;
}

.strategyArticles .contentCardBody {
  padding: 18px 2px 0;
}

.strategyArticles .contentCardBody h2 {
  font-size: 21px;
}

.strategyArticles .contentCardBody > p:not(.contentMeta) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.knowledgeEmpty {
  padding: 32px 0;
}

[hidden] {
  display: none !important;
}

.profileCta,
.innerCta {
  padding: 48px 24px;
}

.siteFooter,
.innerFooter {
  min-height: 132px;
  padding: 26px;
}

@media (max-width: 1100px) {
  .homeExpertise {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .homeExpertiseIntro {
    grid-column: 1 / -1;
    min-height: 210px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --content: calc(100% - 36px);
    --section-space: 48px;
  }

  .hero {
    min-height: 590px;
  }

  .heroContent {
    padding: 78px 0 132px;
  }

  .homeProfile {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy" "metrics";
  }

  .homeProfileVisual {
    min-height: 360px;
  }

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

  .homeMetrics div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .homeMetrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .homeExpertiseIntro {
    grid-column: auto;
  }

  .homeExpertiseCanvas {
    min-height: 380px;
  }

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

  .insightsHeading > div:first-child {
    grid-column: 1 / -1;
  }

  .profileStory > div {
    columns: auto;
  }

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

  .profileIdentity div {
    min-height: 0;
  }

  .profileIdentity div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .profileEvidence > div {
    padding: 42px 28px;
  }

  .teachingPortfolioSection {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0 34px;
  }

  .knowledgeCategories {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

@media (max-width: 680px) {
  :root {
    --content: calc(100% - 32px);
    --section-space: 42px;
  }

  body,
  p,
  .entryContent p,
  .entryContent li {
    font-size: 17px;
  }

  h1,
  .heroContent h1,
  .profileHero h1,
  .researchHeroNew h1,
  .advisoryHero h1,
  .strategyHero h1,
  .contactHero h1 {
    font-size: clamp(34px, 9.2vw, 40px);
  }

  h2,
  .sectionIntro h2,
  .sectionHeading h2 {
    font-size: 29px;
  }

  .hero {
    min-height: 570px;
  }

  .heroContent {
    width: calc(100% - 32px);
    padding: 62px 0 126px;
  }

  .heroLead {
    font-size: 16px;
  }

  .heroPathStrip {
    width: 100%;
  }

  .heroPathStrip a {
    display: flex;
    min-height: 92px;
    padding: 12px 7px;
  }

  .heroPathStrip span {
    font-size: 14px;
  }

  .heroPathStrip strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .homeProfile {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .homeProfileVisual {
    min-height: 280px;
  }

  .homeProfileVisual figcaption {
    min-width: 0;
    padding: 15px 18px;
  }

  .homeProfileVisual figcaption strong {
    font-size: 31px;
  }

  .homeProfileCopy {
    padding: 30px 20px;
  }

  .homeMetrics div {
    display: block;
    padding: 16px 18px;
  }

  .homeMetrics strong {
    display: block;
    margin-bottom: 5px;
    font-size: 30px;
  }

  .homeMetrics span {
    font-size: 13px;
  }

  .homeExpertiseIntro {
    min-height: 0;
    padding: 30px 20px;
  }

  .homeExpertiseCanvas {
    min-height: 220px;
  }

  .homeExpertiseList {
    padding: 12px 20px 26px;
  }

  .homeExpertiseList article {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 17px 0;
  }

  .homeExpertiseList article > span {
    font-size: 39px;
  }

  .homeExpertiseList h3 {
    font-size: 19px;
  }

  .homeExpertiseList p {
    font-size: 13px;
  }

  .insightsHeading {
    gap: 18px;
  }

  .insightsHeading h2 {
    white-space: normal;
  }

  .insightsHeading .aboutLink {
    font-size: 14px;
  }

  .articleGrid {
    grid-auto-columns: 82%;
  }

  .contactSection {
    display: block;
    padding: 34px 20px;
  }

  .contactSection h2 {
    font-size: 27px;
  }

  .contactSection .button {
    margin-top: 22px;
  }

  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 400px;
    min-height: 620px;
    height: 620px;
  }

  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img {
    order: 0;
    width: 100%;
    height: 220px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    order: 1;
    height: 400px;
    min-height: 0;
    padding: 38px 20px;
  }

  .profileStory {
    gap: 18px;
    padding: 42px 0;
  }

  .profileIdentity {
    padding: 0 16px;
  }

  .profilePhilosophy {
    padding: 42px 20px;
  }

  .academicSnapshot {
    grid-template-columns: 1fr;
    margin: 42px auto;
  }

  .profileEvidence {
    margin-bottom: 42px;
  }

  .profileEvidence > img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .profileEvidence > div {
    padding: 38px 20px;
  }

  .teachingPortfolioSection {
    display: flex;
    gap: 0;
    margin: 42px 0;
    padding: 0 16px;
  }

  .teachingIllustration img {
    height: auto;
  }

  .advisoryTopicGrid,
  .researchThemeList {
    grid-template-columns: 1fr;
  }

  .advisorySkillRail {
    gap: 8px 18px;
  }

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

  .startGrid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .researchNumbers article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .researchNumbers article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .researchOutputs article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .knowledgeCategories {
    padding-top: 38px;
  }

  .knowledgeFilters {
    flex-wrap: nowrap;
    width: calc(100vw - 16px);
    margin-left: -8px;
    padding: 0 8px 8px;
    overflow-x: auto;
  }

  .knowledgeFilters button {
    flex: 0 0 auto;
  }

  .strategyArticles {
    padding-top: 24px;
  }

  .strategyArticles .contentGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Unified inner-page heroes and process steps 4.2 */
.profileHero,
.researchHeroNew,
.advisoryHero,
.strategyHero,
.contactHero {
  position: relative;
  display: grid;
  grid-template: "hero" 460px / 1fr;
  width: 100%;
  min-height: 460px;
  height: 460px;
  overflow: hidden;
  background: var(--wine-deep);
}

.profileHero > img,
.researchHeroNew > img,
.advisoryHero > img,
.strategyHero > img,
.contactHero > img,
.strategyHeroVisual {
  grid-area: hero;
  width: 100%;
  height: 460px;
  min-height: 460px;
  object-fit: cover;
}

.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: hero;
  width: 100%;
  height: 460px;
  padding: 48px max(24px, calc((100vw - 1360px) / 2));
  background: linear-gradient(90deg, rgba(48, 20, 27, 0.94) 0%, rgba(72, 25, 35, 0.78) 42%, rgba(72, 25, 35, 0.16) 72%, transparent 100%);
}

.profileHero > div {
  background: linear-gradient(90deg, rgba(69, 24, 42, 0.95) 0%, rgba(105, 39, 58, 0.78) 43%, rgba(105, 39, 58, 0.14) 74%, transparent 100%);
}

.advisoryHeroContent {
  background: linear-gradient(90deg, rgba(15, 54, 48, 0.96) 0%, rgba(30, 92, 78, 0.78) 43%, rgba(30, 92, 78, 0.14) 74%, transparent 100%);
}

.researchHeroNew > div {
  background: linear-gradient(90deg, rgba(18, 39, 59, 0.96) 0%, rgba(34, 70, 99, 0.78) 43%, rgba(34, 70, 99, 0.14) 74%, transparent 100%);
}

.strategyHero > div {
  background: linear-gradient(90deg, rgba(91, 31, 27, 0.96) 0%, rgba(143, 55, 46, 0.78) 43%, rgba(143, 55, 46, 0.14) 74%, transparent 100%);
}

.contactHero > div {
  background: linear-gradient(90deg, rgba(62, 43, 31, 0.96) 0%, rgba(112, 78, 52, 0.78) 43%, rgba(112, 78, 52, 0.14) 74%, transparent 100%);
}

.profileHero > div > *,
.researchHeroNew > div > *,
.advisoryHeroContent > *,
.strategyHero > div > *,
.contactHero > div > * {
  max-width: 650px;
}

.profileHero h1,
.researchHeroNew h1,
.advisoryHero h1,
.strategyHero h1,
.contactHero h1 {
  color: var(--white);
  font-size: clamp(39px, 3.8vw, 52px);
}

.profileHero p:last-child,
.researchHeroNew p:last-child,
.advisoryHeroContent p,
.strategyHero p:last-child,
.contactHero p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.profileHero .kicker,
.researchHeroNew .kicker,
.advisoryHero .kicker,
.strategyHero .kicker,
.contactHero .kicker {
  color: var(--gold-soft);
}

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

.researchNumbers article,
.researchNumbers article + article,
.researchNumbers article:nth-child(3),
.researchNumbers article:nth-child(4) {
  min-height: 136px;
  padding: 26px 30px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advisoryProcess,
.researchProcess {
  display: block;
  width: 100%;
  margin: 0;
  padding: 58px max(24px, calc((100vw - 1360px) / 2));
}

.advisoryProcess {
  background: var(--wine-deep);
}

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

.advisoryProcess > div,
.researchProcess > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.advisoryProcess > div h2,
.researchProcess > div h2 {
  margin: 0;
  font-size: clamp(29px, 2.6vw, 38px);
}

.advisoryProcess > div h2,
.advisoryProcess .kicker {
  color: var(--white);
}

.advisoryProcess ol,
.researchProcess ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisoryProcess ol::before,
.researchProcess ol::before {
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.22;
}

.advisoryProcess ol {
  color: var(--gold-soft);
}

.researchProcess ol {
  color: var(--wine);
}

.advisoryProcess li,
.researchProcess li {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 76px 0 0;
  border: 0;
  background: transparent;
}

.advisoryProcess li > span,
.researchProcess li > span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--wine-deep);
  color: var(--gold-soft);
  font-size: 16px;
  font-weight: 800;
}

.researchProcess li > span {
  background: var(--mist);
  color: var(--wine);
}

.advisoryProcess h3,
.researchProcess strong {
  display: block;
  margin: 0 0 9px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
}

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

.advisoryProcess p {
  color: rgba(255, 255, 255, 0.72);
}

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

.advisoryProcess li p,
.researchProcess li p {
  max-width: 280px;
  margin: 0;
  font-size: 16px;
}

@media (max-width: 680px) {
  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    display: grid;
    grid-template: "hero" 500px / 1fr;
    min-height: 500px;
    height: 500px;
  }

  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img,
  .strategyHeroVisual {
    grid-area: hero;
    width: 100%;
    height: 500px;
    min-height: 500px;
    aspect-ratio: auto;
    object-position: center;
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    grid-area: hero;
    justify-content: end;
    width: 100%;
    height: 500px;
    padding: 34px 20px;
    background: linear-gradient(0deg, rgba(48, 20, 27, 0.98) 0%, rgba(48, 20, 27, 0.78) 50%, rgba(48, 20, 27, 0.12) 88%, transparent 100%);
  }

  .profileHero > div {
    background: linear-gradient(0deg, rgba(69, 24, 42, 0.98) 0%, rgba(69, 24, 42, 0.8) 52%, rgba(69, 24, 42, 0.1) 90%, transparent 100%);
  }

  .advisoryHeroContent {
    background: linear-gradient(0deg, rgba(15, 54, 48, 0.98) 0%, rgba(15, 54, 48, 0.8) 52%, rgba(15, 54, 48, 0.1) 90%, transparent 100%);
  }

  .researchHeroNew > div {
    background: linear-gradient(0deg, rgba(18, 39, 59, 0.98) 0%, rgba(18, 39, 59, 0.8) 52%, rgba(18, 39, 59, 0.1) 90%, transparent 100%);
  }

  .strategyHero > div {
    background: linear-gradient(0deg, rgba(91, 31, 27, 0.98) 0%, rgba(91, 31, 27, 0.8) 52%, rgba(91, 31, 27, 0.1) 90%, transparent 100%);
  }

  .contactHero > div {
    background: linear-gradient(0deg, rgba(62, 43, 31, 0.98) 0%, rgba(62, 43, 31, 0.8) 52%, rgba(62, 43, 31, 0.1) 90%, transparent 100%);
  }

  .profileHero h1,
  .researchHeroNew h1,
  .advisoryHero h1,
  .strategyHero h1,
  .contactHero h1 {
    font-size: 34px;
  }

  .profileHero p:last-child,
  .researchHeroNew p:last-child,
  .advisoryHeroContent p,
  .strategyHero p:last-child,
  .contactHero p:last-child {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.48;
  }

  .advisoryHeroContent .button {
    align-self: flex-start;
    margin-top: 12px;
    padding: 12px 17px;
  }

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

  .researchNumbers article,
  .researchNumbers article + article,
  .researchNumbers article:nth-child(3),
  .researchNumbers article:nth-child(4) {
    min-height: 145px;
    padding: 20px 16px;
  }

  .researchNumbers strong {
    font-size: 35px;
  }

  .researchNumbers span {
    font-size: 14px;
  }

  .advisoryProcess,
  .researchProcess {
    padding: 42px 20px;
  }

  .advisoryProcess > div,
  .researchProcess > div {
    display: block;
    margin-bottom: 28px;
  }

  .advisoryProcess ol,
  .researchProcess ol {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .advisoryProcess ol::before,
  .researchProcess ol::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 2px;
    height: auto;
  }

  .advisoryProcess li,
  .researchProcess li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 0;
    padding: 0 0 30px;
  }

  .advisoryProcess li:last-child,
  .researchProcess li:last-child {
    padding-bottom: 0;
  }

  .advisoryProcess li > span,
  .researchProcess li > span {
    position: relative;
    grid-row: 1 / 3;
  }

  .advisoryProcess li > div,
  .advisoryProcess h3,
  .researchProcess strong,
  .advisoryProcess li p,
  .researchProcess li p {
    grid-column: 2;
  }

  .advisoryProcess h3,
  .researchProcess strong {
    align-self: end;
    margin-top: 4px;
    font-size: 20px;
  }

  .advisoryProcess li p,
  .researchProcess li p {
    max-width: none;
    margin-top: 5px;
    font-size: 15px;
  }
}

/* Homepage editorial simplification 4.3 */
.homeProfile {
  display: block;
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto;
  overflow: visible;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(38, 42, 45, 0.08);
}

.homeProfileCopy {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(420px, 1.22fr);
  grid-template-areas:
    "kicker text"
    "heading text"
    "heading metrics"
    "heading link";
  gap: 0 56px;
  padding: 42px 48px;
}

.homeProfileCopy .kicker {
  grid-area: kicker;
}

.homeProfileCopy h2 {
  grid-area: heading;
  margin: 0;
  font-size: clamp(30px, 2.6vw, 38px);
}

.homeProfileCopy > p:not(.kicker) {
  grid-area: text;
  max-width: 680px;
  margin-bottom: 20px;
}

.homeProfileCopy .aboutLink {
  grid-area: link;
  justify-self: start;
  margin-top: 16px;
}

.homeProfile .homeMetrics {
  display: grid;
  grid-area: metrics;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f6f5;
}

.homeProfile .homeMetrics div {
  display: block;
  min-width: 0;
  padding: 13px 14px;
}

.homeProfile .homeMetrics div + div {
  border-left: 1px solid var(--line);
}

.homeProfile .homeMetrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--wine);
  font-size: 25px;
  line-height: 1;
}

.homeProfile .homeMetrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.homeExpertise {
  display: block;
  width: 100%;
  padding: 48px 0 52px;
  background: var(--mist);
}

.homeExpertiseIntro {
  display: block;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 30px;
  padding: 0;
  background: transparent;
  text-align: center;
}

.homeExpertiseIntro h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(30px, 2.8vw, 40px);
}

.homeExpertiseIntro .kicker {
  color: var(--wine);
}

.homeExpertiseIntro > p:last-child {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.homeExpertiseList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: var(--content);
  margin: 0 auto;
  padding: 0;
}

.homeExpertiseList article {
  display: block;
  min-height: 164px;
  padding: 20px 20px 18px;
  border: 0;
  border-top: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.82);
}

.homeExpertiseList article:first-child {
  border-top: 4px solid var(--wine);
}

.homeExpertiseList article:nth-child(2) {
  border-top-color: #a67418;
}

.homeExpertiseList article:nth-child(3) {
  border-top-color: #2d7054;
}

.homeExpertiseList article:nth-child(4) {
  border-top-color: #34393c;
}

.homeExpertiseList article > span {
  display: block;
  margin-bottom: 19px;
  color: var(--wine);
  font-size: 43px;
  font-weight: 800;
  line-height: 0.9;
  opacity: 1;
}

.homeExpertiseList article:nth-child(2) > span {
  color: #9a6914;
}

.homeExpertiseList article:nth-child(3) > span {
  color: #256449;
}

.homeExpertiseList article:nth-child(4) > span {
  color: #34393c;
}

.homeExpertiseList h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.homeExpertiseList p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .homeProfileCopy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "heading"
      "text"
      "metrics"
      "link";
    gap: 0;
  }

  .homeProfileCopy h2 {
    margin-bottom: 18px;
  }

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

@media (max-width: 680px) {
  .homeProfile {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .homeProfileCopy {
    padding: 34px 20px;
  }

  .homeProfileCopy > p:not(.kicker) {
    margin-bottom: 18px;
  }

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

  .homeProfile .homeMetrics div {
    padding: 13px 14px;
  }

  .homeProfile .homeMetrics div:nth-child(3),
  .homeProfile .homeMetrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .homeProfile .homeMetrics div:nth-child(3) {
    border-left: 0;
  }

  .homeExpertise {
    padding: 38px 0 40px;
  }

  .homeExpertiseIntro {
    margin-bottom: 24px;
  }

  .homeExpertiseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 32px);
  }

  .homeExpertiseList article {
    min-height: 178px;
    padding: 17px 14px;
  }

  .homeExpertiseList article > span {
    margin-bottom: 14px;
    font-size: 35px;
  }

  .homeExpertiseList h3 {
    font-size: 17px;
  }

  .homeExpertiseList p {
    font-size: 12px;
  }
}

/* About letter and research layout refinements 4.4 */
.academicSnapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profileLetter > p:not(.kicker) {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.72;
}

.profileLetterGreeting {
  color: var(--ink);
  font-weight: 600;
}

.profileLetterSignoff {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
  color: var(--wine);
}

.profileLetterSignoff strong {
  font-size: 18px;
}

.profileLetterSignoff span {
  color: var(--muted);
  font-size: 15px;
}

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

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

.researchProcess ol::before {
  top: 27px;
  right: 12.5%;
  left: 12.5%;
}

.researchProcess li {
  padding: 76px 24px 0;
  text-align: center;
}

.researchProcess li > span {
  left: 50%;
  transform: translateX(-50%);
}

.researchProcess li p {
  max-width: 260px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 700px) {
  .academicSnapshot,
  .researchEvidence .researchNumbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academicSnapshot article {
    padding: 24px 18px;
  }

  .academicSnapshot article:nth-child(2n + 1) {
    border-left: 0;
  }

  .academicSnapshot article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .profileLetter > p:not(.kicker) {
    font-size: 16px;
    line-height: 1.66;
  }

  .researchEvidence .researchNumbers article {
    min-height: 138px;
  }

  .researchEvidence .researchNumbers article:nth-child(3) {
    border-left: 0;
  }

  .researchEvidence .researchNumbers article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .researchProcess ol {
    grid-template-columns: 1fr;
  }

  .researchProcess ol::before {
    top: 28px;
    right: auto;
    bottom: 28px;
    left: 27px;
    width: 2px;
    height: auto;
  }

  .researchProcess li {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 0 0 30px;
    text-align: left;
  }

  .researchProcess li > span {
    left: 0;
    transform: none;
  }

  .researchProcess li p {
    margin-right: 0;
    margin-left: 0;
  }
}

/* Homepage profile, routes and expertise 4.5 */
.heroPathStrip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 22px;
  transition: color 180ms ease, background-color 180ms ease;
}

.heroPathStrip strong {
  align-self: auto;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
}

.heroPathStrip a:nth-child(1):hover,
.heroPathStrip a:nth-child(1):focus-visible {
  background: var(--wine);
  color: var(--white);
}

.heroPathStrip a:nth-child(2):hover,
.heroPathStrip a:nth-child(2):focus-visible {
  background: var(--gold);
  color: var(--wine-deep);
}

.heroPathStrip a:nth-child(3):hover,
.heroPathStrip a:nth-child(3):focus-visible {
  background: var(--green);
  color: var(--white);
}

.homeProfile {
  width: min(1160px, calc(100% - 48px));
}

.homeProfileCopy {
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-areas:
    "portrait kicker"
    "portrait heading"
    "portrait text"
    "portrait metrics"
    "portrait link";
  gap: 0 30px;
  padding: 34px 42px;
}

.homeProfilePortrait {
  grid-area: portrait;
  align-self: center;
  width: 150px;
  height: 206px;
  margin: 0;
  overflow: hidden;
  border-bottom: 4px solid var(--wine);
  background: var(--mist);
}

.homeProfilePortrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.homeProfileCopy h2 {
  margin: 3px 0 13px;
  font-size: clamp(25px, 2.25vw, 33px);
  line-height: 1.15;
  white-space: nowrap;
}

.homeProfileAcademic {
  color: var(--wine);
}

.homeProfileDivider {
  color: var(--gold);
}

.homeProfilePractice {
  color: var(--green);
}

.homeProfileCopy > p:not(.kicker) {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.homeProfile .homeMetrics div {
  padding: 11px 13px;
}

.homeProfile .homeMetrics strong {
  font-size: 23px;
}

.homeProfileCopy .aboutLink {
  margin-top: 12px;
}

.homeExpertiseList article {
  min-height: 228px;
  padding: 18px 18px 20px;
}

.homeExpertiseMark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 17px;
}

.homeExpertiseList article .homeExpertiseMark > span {
  margin: 0;
  color: var(--wine);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.homeExpertiseList article:nth-child(2) .homeExpertiseMark > span {
  color: #9a6914;
}

.homeExpertiseList article:nth-child(3) .homeExpertiseMark > span {
  color: #256449;
}

.homeExpertiseList article:nth-child(4) .homeExpertiseMark > span {
  color: #34393c;
}

.homeExpertiseMark img {
  width: 78px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.homeExpertiseList article:nth-child(3) .homeExpertiseMark img {
  object-position: center 24%;
}

.homeExpertiseList h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
  white-space: nowrap;
}

.homeExpertiseList p {
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .homeProfileCopy {
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-areas:
      "portrait kicker"
      "portrait heading"
      "portrait text"
      "metrics metrics"
      "link link";
    gap: 0 24px;
  }

  .homeProfilePortrait {
    width: 120px;
    height: 168px;
  }

  .homeProfileCopy h2 {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .heroPathStrip a {
    min-height: 82px;
    padding: 10px 6px;
  }

  .heroPathStrip strong {
    font-size: 15px;
    line-height: 1.22;
  }

  .homeProfileCopy {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "portrait kicker"
      "portrait heading"
      "text text"
      "metrics metrics"
      "link link";
    gap: 0 16px;
    padding: 30px 20px;
  }

  .homeProfilePortrait {
    align-self: start;
    width: 88px;
    height: 118px;
  }

  .homeProfileCopy h2 {
    margin-top: 5px;
    margin-bottom: 14px;
    font-size: 23px;
    line-height: 1.2;
  }

  .homeProfileCopy > p:not(.kicker) {
    margin-top: 18px;
    font-size: 15px;
  }

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

  .homeProfile .homeMetrics div,
  .homeProfile .homeMetrics div:nth-child(3),
  .homeProfile .homeMetrics div:nth-child(4) {
    min-width: 0;
    padding: 11px 7px;
    border-top: 0;
  }

  .homeProfile .homeMetrics div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .homeProfile .homeMetrics strong {
    font-size: 21px;
  }

  .homeProfile .homeMetrics span {
    font-size: 10px;
    line-height: 1.2;
  }

  .homeExpertiseList article {
    min-height: 238px;
    padding: 15px 12px 17px;
  }

  .homeExpertiseMark {
    gap: 8px;
    margin-bottom: 14px;
  }

  .homeExpertiseList article .homeExpertiseMark > span {
    font-size: 37px;
  }

  .homeExpertiseMark img {
    width: 58px;
    height: 37px;
  }

  .homeExpertiseList h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .homeExpertiseList p {
    font-size: 13px;
    line-height: 1.42;
  }
}

/* Shared footer and expertise heading 4.6 */
.homeExpertiseIntro {
  width: min(1100px, calc(100% - 40px));
}

.homeExpertiseIntro h2 {
  font-size: clamp(29px, 2.5vw, 36px);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .homeExpertiseIntro h2 {
    font-size: 27px;
    line-height: 1.22;
    white-space: normal;
  }
}

/* Expertise number treatment without thumbnails 4.6.1 */
.homeExpertiseMark {
  justify-content: flex-start;
}

/* Knowledge route hover contrast 4.6.2 */
.heroPathStrip a:nth-child(3):hover,
.heroPathStrip a:nth-child(3):focus-visible {
  background: #245b46;
  color: #fff9ec;
}

/* Mobile homepage proportions 4.6.3 */
.homeProfilePractice {
  color: #245b46;
}

@media (max-width: 680px) {
  .homeProfileCopy {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0 14px;
    padding: 26px 18px 28px;
  }

  .homeProfilePortrait {
    width: 74px;
    height: 98px;
  }

  .homeProfileCopy .kicker {
    font-size: 12px;
  }

  .homeProfileCopy h2 {
    margin: 4px 0 10px;
    font-size: 19px;
    line-height: 1.22;
  }

  .homeProfileCopy > p:not(.kicker) {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .homeProfile .homeMetrics {
    width: 100%;
  }

  .homeProfile .homeMetrics div,
  .homeProfile .homeMetrics div:nth-child(3),
  .homeProfile .homeMetrics div:nth-child(4) {
    padding: 10px 6px;
  }

  .homeProfile .homeMetrics strong {
    font-size: 20px;
  }

  .homeProfile .homeMetrics span {
    font-size: 9.5px;
  }

  .homeProfileCopy .aboutLink {
    font-size: 16px;
  }

  .homeExpertiseIntro {
    width: calc(100% - 32px);
  }

  .homeExpertiseIntro h2 {
    font-size: 23px;
    line-height: 1.25;
  }

  .homeExpertiseList article {
    min-height: 218px;
  }
}

/* Teaching portrait balance 4.6.4 */
.teachingIllustration {
  position: relative;
  align-self: stretch;
  min-height: 0;
  background: var(--ink);
}

.teachingIllustration img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.teachingIllustration figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 24px;
  background: rgba(36, 28, 29, 0.88);
  color: #fff9ec;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .teachingIllustration {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .teachingIllustration img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-position: center 20%;
  }

  .teachingIllustration figcaption {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* Full-height homepage portrait 4.6.5 */
@media (min-width: 901px) {
  .homeProfileCopy {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0 38px;
    padding: 32px;
  }

  .homeProfilePortrait {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 350px;
  }

  .homeProfilePortrait img {
    object-position: center 38%;
  }
}

/* Inner hero palette and mobile path alignment 4.6.7 */
.profileHero > div,
.advisoryHeroContent {
  background: linear-gradient(90deg, rgba(122, 38, 56, 0.96) 0%, rgba(122, 38, 56, 0.82) 46%, rgba(122, 38, 56, 0.18) 78%, transparent 100%);
}

.researchHeroNew > div,
.contactHero > div {
  background: linear-gradient(90deg, rgba(216, 180, 106, 0.96) 0%, rgba(216, 180, 106, 0.84) 46%, rgba(216, 180, 106, 0.2) 78%, transparent 100%);
}

.strategyHero > div {
  background: linear-gradient(90deg, rgba(56, 114, 91, 0.96) 0%, rgba(56, 114, 91, 0.82) 46%, rgba(56, 114, 91, 0.18) 78%, transparent 100%);
}

.researchHeroNew h1,
.researchHeroNew p:last-child,
.researchHeroNew .kicker,
.contactHero h1,
.contactHero p:last-child,
.contactHero .kicker {
  color: var(--wine-deep);
}

@media (max-width: 680px) {
  .heroPathStrip {
    right: auto;
    left: 0;
    width: calc(100% - 48px);
  }

  .profileHero > div,
  .advisoryHeroContent {
    background: linear-gradient(0deg, rgba(122, 38, 56, 0.98) 0%, rgba(122, 38, 56, 0.82) 54%, rgba(122, 38, 56, 0.12) 91%, transparent 100%);
  }

  .researchHeroNew > div,
  .contactHero > div {
    background: linear-gradient(0deg, rgba(216, 180, 106, 0.98) 0%, rgba(216, 180, 106, 0.84) 54%, rgba(216, 180, 106, 0.16) 91%, transparent 100%);
  }

  .strategyHero > div {
    background: linear-gradient(0deg, rgba(56, 114, 91, 0.98) 0%, rgba(56, 114, 91, 0.84) 54%, rgba(56, 114, 91, 0.12) 91%, transparent 100%);
  }
}

/* Homepage hero mobile polish 4.6.8 */
.homeProfileAcademic,
.homeProfileDivider,
.homeProfilePractice {
  color: var(--ink);
}

@media (max-width: 680px) {
  .hero {
    min-height: 500px;
  }

  .heroContent {
    padding-top: 44px;
    padding-bottom: 92px;
  }

  .heroPathStrip {
    width: calc(100% - 48px);
  }

  .heroPathStrip a {
    min-height: 62px;
    padding: 8px 2px;
  }

  .heroPathStrip strong {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: max(9px, 2.55vw);
    line-height: 1.1;
    white-space: nowrap;
  }
}

/* About and advisory presentation polish 4.6.9 */
.siteFooter,
.innerFooter {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.siteFooter img {
  display: block;
  margin-inline: auto;
}

.teachingIllustration {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
  background: var(--blush);
}

.teachingIllustration img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center center;
}

.teachingIllustration figcaption {
  display: none;
}

.advisoryClients {
  background: var(--paper);
}

.advisorySectionHeading h2 {
  max-width: 720px;
}

.advisoryClientGroups {
  align-items: stretch;
}

.advisoryClientGroups article {
  min-height: 100%;
  padding: 30px 32px;
  border-top: 3px solid var(--wine);
  border-left: 0;
  border-radius: 0;
  background: var(--white);
}

.advisoryClientGroups article:nth-child(2) {
  border-top-color: var(--gold);
}

.advisoryClientGroups article:nth-child(3) {
  border-top-color: #4d846d;
}

.advisoryClientGroups article:nth-child(4) {
  border-top-color: var(--coral);
}

.clientNames {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clientNames li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

/* Canonical responsive cleanup 4.7.0.
 * This final layer consolidates the intended public presentation after the
 * earlier page-specific iterations, especially at narrow widths. */
:root {
  --content: min(1180px, calc(100vw - 48px));
  --hero-wine: #421e29;
  --hero-navy: #233746;
  --hero-forest: #29493d;
  --hero-bronze: #554033;
}

body {
  overflow-x: clip;
}

.profileHero > div,
.advisoryHeroContent {
  background: linear-gradient(90deg, rgba(66, 30, 41, 0.92) 0%, rgba(66, 30, 41, 0.76) 48%, rgba(66, 30, 41, 0.22) 82%, transparent 100%);
}

.researchHeroNew > div {
  background: linear-gradient(90deg, rgba(35, 55, 70, 0.92) 0%, rgba(35, 55, 70, 0.76) 48%, rgba(35, 55, 70, 0.22) 82%, transparent 100%);
}

.strategyHero > div {
  background: linear-gradient(90deg, rgba(41, 73, 61, 0.92) 0%, rgba(41, 73, 61, 0.76) 48%, rgba(41, 73, 61, 0.22) 82%, transparent 100%);
}

.contactHero > div {
  background: linear-gradient(90deg, rgba(85, 64, 51, 0.92) 0%, rgba(85, 64, 51, 0.76) 48%, rgba(85, 64, 51, 0.22) 82%, transparent 100%);
}

.profileHero h1,
.profileHero p:last-child,
.profileHero .kicker,
.advisoryHeroContent h1,
.advisoryHeroContent p:last-child,
.advisoryHeroContent .kicker,
.researchHeroNew h1,
.researchHeroNew p:last-child,
.researchHeroNew .kicker,
.strategyHero h1,
.strategyHero p:last-child,
.strategyHero .kicker,
.contactHero h1,
.contactHero p:last-child,
.contactHero .kicker {
  color: var(--ivory);
}

.profileHero p:last-child,
.advisoryHeroContent p:last-child,
.researchHeroNew p:last-child,
.strategyHero p:last-child,
.contactHero p:last-child {
  color: rgba(255, 253, 248, 0.88);
}

.profileHero .kicker,
.advisoryHeroContent .kicker,
.researchHeroNew .kicker,
.strategyHero .kicker,
.contactHero .kicker {
  color: var(--gold-soft);
}

.siteFooter,
.innerFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.siteFooter img,
.innerFooter img,
.innerFooterBrand img {
  display: block;
  margin-inline: auto;
}

.knowledgeFilters {
  scrollbar-width: none;
}

.knowledgeFilters::-webkit-scrollbar {
  display: none;
}

@media (max-width: 680px) {
  .heroPathStrip {
    right: 0;
    left: 0;
    width: 100%;
  }

  .heroPathStrip a {
    min-width: 0;
    padding: 10px 6px;
  }

  .heroPathStrip strong {
    font-size: clamp(12px, 3.1vw, 15px);
    line-height: 1.1;
    white-space: nowrap;
  }

  .profileHero > div,
  .advisoryHeroContent {
    background: linear-gradient(0deg, rgba(66, 30, 41, 0.94) 0%, rgba(66, 30, 41, 0.78) 56%, rgba(66, 30, 41, 0.2) 92%, transparent 100%);
  }

  .researchHeroNew > div {
    background: linear-gradient(0deg, rgba(35, 55, 70, 0.94) 0%, rgba(35, 55, 70, 0.78) 56%, rgba(35, 55, 70, 0.2) 92%, transparent 100%);
  }

  .strategyHero > div {
    background: linear-gradient(0deg, rgba(41, 73, 61, 0.94) 0%, rgba(41, 73, 61, 0.78) 56%, rgba(41, 73, 61, 0.2) 92%, transparent 100%);
  }

  .contactHero > div {
    background: linear-gradient(0deg, rgba(85, 64, 51, 0.94) 0%, rgba(85, 64, 51, 0.78) 56%, rgba(85, 64, 51, 0.2) 92%, transparent 100%);
  }

  .profileHero h1,
  .advisoryHeroContent h1,
  .researchHeroNew h1,
  .strategyHero h1,
  .contactHero h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.12;
  }

  .profileHero p:last-child,
  .advisoryHeroContent p:last-child,
  .researchHeroNew p:last-child,
  .strategyHero p:last-child,
  .contactHero p:last-child {
    font-size: 16px;
    line-height: 1.5;
  }

  .knowledgeFilters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    padding: 0;
    gap: 8px;
    overflow: visible;
  }

  .knowledgeFilters button {
    min-width: 0;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .knowledgeFilters button:first-child {
    grid-column: 1 / -1;
  }

  .siteFooter,
  .innerFooter {
    min-height: 140px;
    padding: 28px 20px;
  }
}

@media (max-width: 680px) {
  .teachingIllustration img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .advisoryClientGroups article {
    min-height: 0;
    padding: 24px 20px;
  }

  .clientNames li {
    font-size: 14px;
  }
}

/* Mobile homepage profile proportion 4.7.1 */
@media (max-width: 680px) {
  .homeProfile {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .homeProfileCopy {
    width: 100%;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-areas:
      "portrait kicker"
      "portrait heading"
      "text text"
      "metrics metrics"
      "link link";
    gap: 0 16px;
    padding: 34px 20px 36px;
  }

  .homeProfilePortrait {
    width: 112px;
    height: 148px;
  }

  .homeProfileCopy .kicker {
    font-size: 13px;
    line-height: 1.25;
  }

  .homeProfileCopy h2 {
    margin: 7px 0 12px;
    font-size: 23px;
    line-height: 1.18;
  }

  .homeProfileCopy > p:not(.kicker) {
    margin-top: 22px;
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.6;
  }

  .homeProfile .homeMetrics {
    width: 100%;
  }

  .homeProfile .homeMetrics div,
  .homeProfile .homeMetrics div:nth-child(3),
  .homeProfile .homeMetrics div:nth-child(4) {
    padding: 12px 7px;
  }

  .homeProfile .homeMetrics strong {
    font-size: 23px;
  }

  .homeProfile .homeMetrics span {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .homeProfileCopy .aboutLink {
    margin-top: 18px;
    font-size: 17px;
  }
}

/* Shared hero, footer and advisory alignment 4.7.3 */
.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  background:
    linear-gradient(90deg, rgba(38, 21, 25, 0.8) 0%, rgba(53, 26, 31, 0.58) 43%, rgba(53, 26, 31, 0.06) 78%),
    linear-gradient(0deg, rgba(28, 22, 23, 0.24), transparent 48%);
}

.siteFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 160px;
  padding: 32px;
  background: #f7f3ed;
  text-align: center;
}

.siteFooter img {
  display: block;
  width: 140px;
  max-height: 54px;
  margin-inline: auto;
  object-fit: contain;
}

.siteFooter .footerCopyright {
  width: 100%;
  margin: 0;
  text-align: center;
}

.advisoryClientGroups article,
.advisoryClientGroups article:nth-child(2),
.advisoryClientGroups article:nth-child(3),
.advisoryClientGroups article:nth-child(4) {
  background: transparent;
}

.advisorySectionHeading > p:last-child {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

@media (min-width: 681px) {
  .advisoryProcess ol,
  .researchProcess ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .advisoryProcess ol::before,
  .researchProcess ol::before {
    top: 27px;
    right: 12.5%;
    left: 12.5%;
  }

  .advisoryProcess li,
  .researchProcess li {
    padding: 76px 18px 0;
    text-align: center;
  }

  .advisoryProcess li > span,
  .researchProcess li > span {
    left: 50%;
    transform: translateX(-50%);
  }

  .advisoryProcess li p,
  .researchProcess li p {
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    background:
      linear-gradient(90deg, rgba(38, 21, 25, 0.82), rgba(58, 28, 34, 0.3)),
      linear-gradient(0deg, rgba(35, 26, 28, 0.38), transparent 55%);
  }

  .siteFooter {
    min-height: 140px;
    padding: 28px 20px;
  }
}

/* Homepage portrait, expertise and article summaries 4.7.4 */
.homeProfilePortrait img {
  object-position: center 36%;
}

.homeExpertiseList h3 {
  font-size: 20px;
  line-height: 1.28;
}

.homeExpertiseList p {
  font-size: 16.5px;
  line-height: 1.58;
}

.articleCard {
  display: flex;
  flex-direction: column;
}

.articleBody {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.articleBody h3 {
  margin-bottom: 12px;
}

.articleExcerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 680px) {
  .homeExpertiseList h3 {
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
  }

  .homeExpertiseList p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .articleExcerpt {
    font-size: 14.5px;
    -webkit-line-clamp: 3;
  }
}

/* Homepage metric readability 4.7.5 */
.homeProfile .homeMetrics div,
.homeProfile .homeMetrics div:nth-child(3),
.homeProfile .homeMetrics div:nth-child(4) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
}

.homeProfile .homeMetrics strong {
  margin-bottom: 8px;
  font-size: 34px;
}

.homeProfile .homeMetrics span {
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 680px) {
  .homeProfile .homeMetrics div,
  .homeProfile .homeMetrics div:nth-child(3),
  .homeProfile .homeMetrics div:nth-child(4) {
    padding: 12px 7px;
  }

  .homeProfile .homeMetrics strong {
    margin-bottom: 5px;
    font-size: 25px;
  }

  .homeProfile .homeMetrics span {
    font-size: 11.5px;
    line-height: 1.25;
  }
}

/* Clear, unified inner heroes and heading scale 4.7.7 */
.profileHero,
.researchHeroNew,
.advisoryHero,
.strategyHero,
.contactHero {
  background: #26191d;
  isolation: isolate;
}

.profileHero > img,
.researchHeroNew > img,
.advisoryHero > img,
.strategyHero > img,
.contactHero > img,
.strategyHeroVisual {
  filter: contrast(1.12) saturate(1.1) brightness(0.94);
  transform: scale(1.005);
}

.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  background:
    linear-gradient(90deg, rgba(38, 21, 25, 0.9) 0%, rgba(53, 26, 31, 0.7) 44%, rgba(53, 26, 31, 0.13) 78%, transparent 100%),
    linear-gradient(0deg, rgba(28, 22, 23, 0.24), transparent 50%);
}

.insightsHeading h2 {
  font-size: clamp(25px, 2.25vw, 33px);
  line-height: 1.15;
}

@media (max-width: 680px) {
  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img,
  .strategyHeroVisual {
    filter: contrast(1.14) saturate(1.08) brightness(0.9);
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    background:
      linear-gradient(0deg, rgba(38, 21, 25, 0.94) 0%, rgba(53, 26, 31, 0.8) 54%, rgba(53, 26, 31, 0.18) 90%, transparent 100%),
      linear-gradient(90deg, rgba(38, 21, 25, 0.28), transparent 70%);
  }

  .insightsHeading h2 {
    font-size: 23px;
    line-height: 1.18;
  }
}

/* Single-line homepage and profile footer headings 4.7.8 */
.home .profileCta h2,
.profilePage .profileCta h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  white-space: nowrap;
}

@media (max-width: 680px) {
  .home .profileCta h2,
  .profilePage .profileCta h2 {
    font-size: 21px;
  }
}

/* Compact metric labels on mobile 4.7.11 */
.homeProfile .homeMetrics .metricLabelMobile {
  display: none;
}

@media (max-width: 680px) {
  .homeProfile .homeMetrics .metricLabelDesktop {
    display: none;
  }

  .homeProfile .homeMetrics .metricLabelMobile {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* Canonical article and inner-page presentation 4.8.0 */
.articleHero {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(46px, 6vw, 74px);
}

.articleHero h1 {
  max-width: 980px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.12;
}

.articleByline {
  align-items: center;
  gap: 10px 22px;
  font-size: 15px;
}

.articleByline span + span::before {
  margin-right: 22px;
  color: var(--gold);
  content: "•";
}

.articleLayout {
  grid-template-columns: minmax(190px, 230px) minmax(0, 820px);
  gap: clamp(44px, 5vw, 72px);
}

.articleContent {
  color: #30363a;
  font-size: 19px;
  line-height: 1.75;
}

.articleContent p,
.articleContent li {
  font-size: 19px;
  line-height: 1.75;
}

.articleContent h2 {
  margin: 1.75em 0 0.62em;
  color: #202629;
  font-size: clamp(29px, 2.5vw, 35px);
  line-height: 1.2;
}

.articleContent h3 {
  margin: 1.55em 0 0.52em;
  color: #262c2f;
  font-size: clamp(23px, 2vw, 27px);
  line-height: 1.25;
}

.articleContent blockquote {
  margin: 2rem 0;
  padding: 20px 24px;
  border-left: 4px solid var(--wine);
  background: #f7f4ef;
  color: #34393c;
}

.articleContent table {
  display: table;
  width: 100%;
  min-width: 680px;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid #c8ced0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: #343a3d;
  font-size: 17px;
  line-height: 1.5;
  box-shadow: 0 12px 30px rgba(32, 38, 41, 0.06);
}

.articleContent table caption {
  padding: 0 0 10px;
  color: #5b6266;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.articleContent th,
.articleContent td {
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid #d5dadd;
  border-bottom: 1px solid #d5dadd;
  vertical-align: top;
  text-align: left;
}

.articleContent th:last-child,
.articleContent td:last-child {
  border-right: 0;
}

.articleContent tr:last-child td {
  border-bottom: 0;
}

.articleContent thead th,
.articleContent tr:first-child th {
  background: #342126;
  color: #fffdf8;
  font-weight: 700;
}

.articleContent tbody tr:nth-child(even) td {
  background: #f5f6f4;
}

.articleContent tbody tr:hover td {
  background: #f7eee8;
}

.articleContent > div[style*="overflow"],
.articleContent .wp-block-table,
.articleContent .articleTableScroll {
  width: 100%;
  margin: 2rem 0;
  overflow-x: auto !important;
  border: 0;
  scrollbar-color: var(--wine) #ebe8e3;
}

.articleContent > div[style*="overflow"] table,
.articleContent .wp-block-table table {
  margin: 0;
}




.articleContent .references,
.articleContent .tai-lieu-tham-khao {
  margin-top: 3rem;
  padding: clamp(22px, 3vw, 32px);
  border-top: 4px solid var(--wine);
  background: #f7f5f1;
}

.articleContent,
.articleContent p,
.articleContent li,
.articleContent a,
.articleContent td,
.articleContent th,
.articleBody,
.articleBody p,
.articleBody a,
.englishArticleContent,
.englishArticleContent p,
.englishArticleContent li,
.englishArticleContent a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.articleContent .references li,
.articleContent .tai-lieu-tham-khao li {
  margin-bottom: 12px;
  padding-left: 1.6em;
  text-indent: -1.6em;
  font-size: 16px;
  line-height: 1.6;
}

/* Inner heroes use one crisp, full-bleed system on every viewport. */
.profileHero,
.researchHeroNew,
.advisoryHero,
.strategyHero,
.contactHero {
  position: relative;
  display: grid;
  grid-template: "hero" 430px / 1fr;
  width: 100%;
  min-height: 430px;
  height: 430px;
  overflow: hidden;
  background: #251a1e;
  isolation: isolate;
}

.profileHero > img,
.researchHeroNew > img,
.advisoryHero > img,
.strategyHero > img,
.contactHero > img,
.strategyHeroVisual {
  grid-area: hero;
  width: 100%;
  height: 430px;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.98) brightness(0.92);
  transform: none;
}

.profileHero > img {
  object-position: 50% 48%;
}

.researchHeroNew > img {
  object-position: 56% 50%;
}

.advisoryHero > img {
  object-position: 52% 50%;
}

.strategyHero > img,
.strategyHeroVisual {
  object-position: 58% 50%;
}

.contactHero > img {
  object-position: 50% 52%;
}

.profileHero > div,
.researchHeroNew > div,
.advisoryHeroContent,
.strategyHero > div,
.contactHero > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: hero;
  width: 100%;
  height: 430px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(45, 23, 28, 0.86) 0%, rgba(58, 28, 34, 0.62) 44%, rgba(58, 28, 34, 0.12) 76%, rgba(58, 28, 34, 0.02) 100%),
    linear-gradient(0deg, rgba(35, 26, 28, 0.22), transparent 52%);
}

.profileHero > div > *,
.researchHeroNew > div > *,
.advisoryHeroContent > *,
.strategyHero > div > *,
.contactHero > div > * {
  max-width: 670px;
}

.profileHero h1,
.researchHeroNew h1,
.advisoryHero h1,
.strategyHero h1,
.contactHero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.12;
}

.profileHero p:last-child,
.researchHeroNew p:last-child,
.advisoryHeroContent p,
.strategyHero p:last-child,
.contactHero p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17.5px;
  line-height: 1.55;
}

.profileHero .kicker,
.researchHeroNew .kicker,
.advisoryHero .kicker,
.strategyHero .kicker,
.contactHero .kicker {
  color: #efd99d;
}

@media (max-width: 680px) {
  .articleHero {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .articleHero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .articleByline {
    font-size: 14px;
  }

  .articleLayout {
    display: block;
    width: calc(100% - 32px);
    grid-template-columns: none;
  }

  .articleAside {
    display: none;
  }

  .articleContent {
    width: 100%;
    max-width: none;
  }

  .articleContent,
  .articleContent p,
  .articleContent li {
    font-size: 17px;
    line-height: 1.7;
  }

  .articleContent h2 {
    font-size: 28px;
  }

  .articleContent h3 {
    font-size: 23px;
  }

  .articleContent table {
    font-size: 16px;
  }

  .articleContent th,
  .articleContent td {
    padding: 12px 13px;
  }

  .profileHero,
  .researchHeroNew,
  .advisoryHero,
  .strategyHero,
  .contactHero {
    grid-template: "hero" 360px / 1fr;
    min-height: 360px;
    height: 360px;
  }

  .profileHero > img,
  .researchHeroNew > img,
  .advisoryHero > img,
  .strategyHero > img,
  .contactHero > img,
  .strategyHeroVisual {
    height: 360px;
    min-height: 360px;
    filter: contrast(1.1) saturate(0.98) brightness(0.86);
  }

  .profileHero > div,
  .researchHeroNew > div,
  .advisoryHeroContent,
  .strategyHero > div,
  .contactHero > div {
    justify-content: flex-end;
    height: 360px;
    padding: 24px 20px 26px;
    background:
      linear-gradient(0deg, rgba(45, 23, 28, 0.96) 0%, rgba(58, 28, 34, 0.78) 49%, rgba(58, 28, 34, 0.22) 82%, rgba(58, 28, 34, 0.03) 100%);
  }

  .profileHero h1,
  .researchHeroNew h1,
  .advisoryHero h1,
  .strategyHero h1,
  .contactHero h1 {
    font-size: 29px;
    line-height: 1.12;
  }

  .profileHero p:last-child,
  .researchHeroNew p:last-child,
  .advisoryHeroContent p,
  .strategyHero p:last-child,
  .contactHero p:last-child {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .heroPathStrip strong {
    font-size: clamp(10px, 2.75vw, 12px);
  }
}

/* Long-form knowledge articles 4.13.0 */
.articleHero {
  padding-top: clamp(38px, 5vw, 62px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.articleHero h1 {
  font-size: clamp(36px, 3.4vw, 48px);
}

.articleHero .articleBack {
  margin-bottom: 24px;
}

.articleHero .articleByline {
  margin-top: 20px;
}

.articleFeatured {
  margin-bottom: 36px;
}

.articleFeatured img {
  max-height: 500px;
}

.articleLayout {
  grid-template-columns: minmax(160px, 190px) minmax(0, 880px);
  gap: clamp(28px, 3vw, 44px);
}

.articleContent {
  --article-accent: #8f2434;
  --article-accent-soft: #fbf2f3;
  font-size: 18.5px;
  line-height: 1.68;
}

.articleContent p,
.articleContent li {
  font-size: 18.5px;
  line-height: 1.68;
}

.articleContent p {
  margin: 0 0 1.05em;
}

.articleContent ul,
.articleContent ol {
  margin-top: 0.75em;
  margin-bottom: 1.25em;
}

.articleContent h2 {
  margin: 1.35em 0 0.5em;
  color: var(--article-accent);
  font-size: clamp(27px, 2.25vw, 32px);
}

.articleContent h3 {
  margin: 1.25em 0 0.45em;
}

.articleContent blockquote,
.articleContent table,
.articleContent > div[style*="overflow"],
.articleContent .wp-block-table,
.articleContent .articleTableScroll {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.articleContent.category-marketing-kinh-doanh,
.articleContent.category-marketing-va-kinh-doanh {
  --article-accent: #a66f09;
  --article-accent-soft: #fff8e9;
}

.articleContent.category-cong-nghe,
.articleContent.category-cong-nghe-va-ai {
  --article-accent: #176b53;
  --article-accent-soft: #edf8f4;
}

.articleContent.category-phuong-phap-nghien-cuu-khoa-hoc,
.articleContent.category-nghien-cuu-khoa-hoc {
  --article-accent: #315f86;
  --article-accent-soft: #eef5fa;
}

.articleContent.category-ky-nang-phat-trien-ban-than,
.articleContent.category-ky-nang-va-phat-trien-ban-than {
  --article-accent: #76506c;
  --article-accent-soft: #f7f0f6;
}

.articleContent.category-management {
  --article-accent: #8f2434;
  --article-accent-soft: #fbf2f3;
}

.articleContent.category-marketing {
  --article-accent: #a66f09;
  --article-accent-soft: #fff8e9;
}

.articleContent.category-technology {
  --article-accent: #176b53;
  --article-accent-soft: #edf8f4;
}

.articleContent.category-research {
  --article-accent: #315f86;
  --article-accent-soft: #eef5fa;
}

.articleContent.category-skills {
  --article-accent: #76506c;
  --article-accent-soft: #f7f0f6;
}

.articleContent.category-market-notes,
.articleContent.category-market {
  --article-accent: #0d4b45;
  --article-accent-soft: #edf6f4;
}

.articleHero.category-marketing-kinh-doanh .kicker,
.articleHero.category-marketing-va-kinh-doanh .kicker {
  color: #b17a13;
}

.articleHero.category-cong-nghe .kicker,
.articleHero.category-cong-nghe-va-ai .kicker {
  color: #176b53;
}

.articleHero.category-phuong-phap-nghien-cuu-khoa-hoc .kicker,
.articleHero.category-nghien-cuu-khoa-hoc .kicker {
  color: #315f86;
}

.articleHero.category-ky-nang-phat-trien-ban-than .kicker,
.articleHero.category-ky-nang-va-phat-trien-ban-than .kicker {
  color: #76506c;
}

.articleHero.category-management .kicker {
  color: #8f2434;
}

.articleHero.category-marketing .kicker {
  color: #a66f09;
}

.articleHero.category-technology .kicker {
  color: #176b53;
}

.articleHero.category-research .kicker {
  color: #315f86;
}

.articleHero.category-skills .kicker {
  color: #76506c;
}

.articleHero.category-market-notes .kicker,
.articleHero.category-market .kicker {
  color: #0d4b45;
}

.exampleBox {
  margin: 1.8rem 0;
  padding: clamp(24px, 3vw, 34px);
  border-top: 5px solid var(--article-accent);
  background: var(--article-accent-soft);
}

.exampleBox .exampleLabel {
  margin: 0 0 8px;
  color: var(--article-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.articleContent .exampleBox h2 {
  margin: 0 0 0.7em;
  color: #202629;
  font-size: clamp(25px, 2vw, 30px);
}

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

.examplePractice {
  margin: 1.25rem 0 1rem;
  padding: 18px 20px;
  border-left: 3px solid var(--article-accent);
  background: rgba(255, 255, 255, 0.72);
}

.examplePractice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--article-accent);
  font-size: 16px;
}

.examplePractice p {
  margin: 0;
}

.articleNavigation {
  margin-top: 48px;
}

.relatedSection {
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(46px, 5vw, 70px);
}

@media (max-width: 680px) {
  .articleHero {
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .articleHero h1 {
    font-size: 32px;
  }

  .articleHero .articleBack {
    margin-bottom: 18px;
  }

  .articleFeatured {
    margin-bottom: 24px;
  }

  .articleFeatured img {
    max-height: 280px;
  }

  .articleLayout {
    width: calc(100% - 24px);
  }

  .articleContent,
  .articleContent p,
  .articleContent li {
    font-size: 17.5px;
    line-height: 1.65;
  }

  .articleContent h2 {
    margin-top: 1.2em;
    font-size: 26px;
  }

  .exampleBox {
    margin: 1.4rem -12px;
    padding: 22px 18px;
  }

  .articleContent .exampleBox h2 {
    font-size: 24px;
  }

  .examplePractice {
    padding: 16px;
  }

  .articleNavigation {
    margin-top: 36px;
  }
}

/* Knowledge category accents 4.13.2 */
.articleCard,
.contentCard {
  --card-accent: #8f2434;
}

.contentCard.category-management,
.contentCard[data-knowledge-group="management"] {
  --card-accent: #8f2434;
}

.articleCard.category-marketing-kinh-doanh,
.articleCard.category-marketing-va-kinh-doanh,
.contentCard.category-marketing-kinh-doanh,
.contentCard.category-marketing-va-kinh-doanh,
.contentCard[data-knowledge-group="marketing"] {
  --card-accent: #a66f09;
}

.articleCard.category-cong-nghe,
.articleCard.category-cong-nghe-va-ai,
.contentCard.category-cong-nghe,
.contentCard.category-cong-nghe-va-ai,
.contentCard[data-knowledge-group="technology"] {
  --card-accent: #176b53;
}

.articleCard.category-phuong-phap-nghien-cuu-khoa-hoc,
.articleCard.category-nghien-cuu-khoa-hoc,
.contentCard.category-phuong-phap-nghien-cuu-khoa-hoc,
.contentCard.category-nghien-cuu-khoa-hoc,
.contentCard[data-knowledge-group="research"] {
  --card-accent: #315f86;
}

.articleCard.category-ky-nang-phat-trien-ban-than,
.articleCard.category-ky-nang-va-phat-trien-ban-than,
.articleCard.category-skills,
.contentCard.category-ky-nang-phat-trien-ban-than,
.contentCard.category-ky-nang-va-phat-trien-ban-than,
.contentCard.category-skills,
.contentCard[data-knowledge-group="skills"] {
  --card-accent: #76506c;
}

.articleCard.category-market-notes,
.articleCard.category-market,
.contentCard.category-market-notes,
.contentCard.category-market,
.contentCard[data-knowledge-group="market"] {
  --card-accent: #0d4b45;
}

.articleCard.category-management,
.contentCard.category-management,
.contentCard[data-knowledge-group="management"] {
  --card-accent: #8f2434;
}

.articleCard.category-technology,
.contentCard.category-technology,
.contentCard[data-knowledge-group="technology"] {
  --card-accent: #176b53;
}

.articleCard .articleCategory,
.contentCard .contentMeta {
  color: var(--card-accent);
}

.articleCard:hover h3 a,
.contentCard:hover h2 a,
.contentCard:hover .contentCardLink {
  color: var(--card-accent);
}

/* Research page focus refresh 4.13.3 */
.researchDirectionIntro {
  width: var(--content);
  margin: 0 auto 36px;
  padding: clamp(30px, 4.5vw, 54px);
  border-top: 5px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 232, 0.88)),
    var(--white);
}

.researchDirectionIntro h2 {
  max-width: 900px;
  margin: 8px 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.researchDirectionIntro p:last-child {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.75;
}

.researchThemeList {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.researchThemeList article {
  position: relative;
  min-height: 270px;
  padding: 28px 26px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.92);
}

.researchThemeList article:nth-child(2),
.researchThemeList article:nth-child(5) {
  border-top-color: var(--gold);
}

.researchThemeList article:nth-child(3),
.researchThemeList article:nth-child(6) {
  border-top-color: var(--green);
}

.researchThemeList article:nth-child(4),
.researchThemeList article:nth-child(7) {
  border-top-color: #315f86;
}

.researchThemeList article > span {
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(143, 36, 52, 0.08);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
}

.researchThemeList article:nth-child(2) > span,
.researchThemeList article:nth-child(5) > span {
  color: rgba(166, 111, 9, 0.11);
}

.researchThemeList article:nth-child(3) > span,
.researchThemeList article:nth-child(6) > span {
  color: rgba(23, 107, 83, 0.1);
}

.researchThemeList article:nth-child(4) > span,
.researchThemeList article:nth-child(7) > span {
  color: rgba(49, 95, 134, 0.1);
}

.researchThemeList h3 {
  position: relative;
  max-width: 96%;
  margin-bottom: 14px;
  font-size: clamp(21px, 1.45vw, 25px);
  line-height: 1.2;
}

.researchThemeList p {
  position: relative;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.researchEvidence {
  padding-top: clamp(48px, 5vw, 72px);
}

.researchEvidence .researchNumbers {
  margin-bottom: 0;
}

.researchEvidence .researchOutputs {
  margin-top: 34px;
}

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

@media (max-width: 680px) {
  .researchDirectionIntro {
    width: 100%;
    padding: 30px 24px;
  }

  .researchDirectionIntro h2 {
    font-size: 33px;
  }

  .researchDirectionIntro p:last-child {
    font-size: 17px;
    line-height: 1.65;
  }

  .researchThemeList {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 14px;
  }

  .researchThemeList article {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .researchThemeList article > span {
    font-size: 70px;
  }

  .researchThemeList h3 {
    font-size: 22px;
  }

  .researchThemeList p {
    font-size: 17px;
  }
}

/* Research directions editorial map 4.13.4 */
.researchThemes {
  background:
    linear-gradient(180deg, rgba(242, 246, 245, 0.96), rgba(248, 246, 240, 0.98));
}

.researchDirectionIntro {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: clamp(26px, 4vw, 72px);
  align-items: end;
  border-top: 0;
  border-left: 7px solid var(--wine);
  background: transparent;
  padding: 0 0 34px 34px;
}

.researchDirectionIntro h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 48px);
}

.researchDirectionIntro p:last-child {
  max-width: 760px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 38, 41, 0.18);
}

.researchThemeList {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.researchThemeList article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  min-height: 210px;
  padding: clamp(24px, 2.4vw, 36px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(32, 38, 41, 0.06);
}

.researchThemeList article:nth-child(1) {
  grid-column: span 7;
  background: var(--wine-deep);
}

.researchThemeList article:nth-child(2) {
  grid-column: span 5;
  background: #fff8e6;
}

.researchThemeList article:nth-child(3),
.researchThemeList article:nth-child(4),
.researchThemeList article:nth-child(5) {
  grid-column: span 4;
}

.researchThemeList article:nth-child(3) {
  background: #edf6f1;
}

.researchThemeList article:nth-child(4) {
  background: #eef4f8;
}

.researchThemeList article:nth-child(5) {
  background: #fff7ea;
}

.researchThemeList article:nth-child(6) {
  grid-column: span 5;
  background: #f7f1ed;
}

.researchThemeList article:nth-child(7) {
  grid-column: span 4;
  background: #f4f7f4;
}

.researchThemeList article:nth-child(8) {
  grid-column: span 3;
  background: var(--ink);
}

.researchThemeList article > span {
  position: static;
  color: var(--wine);
  font-size: clamp(48px, 4.8vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  opacity: 1;
}

.researchThemeList article:nth-child(2) > span,
.researchThemeList article:nth-child(5) > span {
  color: #a66f09;
}

.researchThemeList article:nth-child(3) > span,
.researchThemeList article:nth-child(6) > span {
  color: #176b53;
}

.researchThemeList article:nth-child(4) > span,
.researchThemeList article:nth-child(7) > span {
  color: #315f86;
}

.researchThemeList article:nth-child(1) > span,
.researchThemeList article:nth-child(8) > span {
  color: var(--gold-soft);
}

.researchThemeList h3 {
  max-width: none;
  margin: 8px 0 14px;
  font-size: clamp(24px, 2.15vw, 34px);
  letter-spacing: -0.01em;
}

.researchThemeList p {
  max-width: 760px;
  color: #515a5d;
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.62;
}

.researchThemeList article:nth-child(1) h3,
.researchThemeList article:nth-child(1) p,
.researchThemeList article:nth-child(8) h3,
.researchThemeList article:nth-child(8) p {
  color: var(--white);
}

.researchThemeList article:nth-child(1) p,
.researchThemeList article:nth-child(8) p {
  opacity: 0.82;
}

@media (max-width: 1100px) {
  .researchDirectionIntro {
    grid-template-columns: 1fr;
  }

  .researchThemeList article,
  .researchThemeList article:nth-child(1),
  .researchThemeList article:nth-child(2),
  .researchThemeList article:nth-child(3),
  .researchThemeList article:nth-child(4),
  .researchThemeList article:nth-child(5),
  .researchThemeList article:nth-child(6),
  .researchThemeList article:nth-child(7),
  .researchThemeList article:nth-child(8) {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .researchDirectionIntro {
    width: calc(100% - 32px);
    padding: 0 0 24px 20px;
  }

  .researchDirectionIntro h2 {
    font-size: 32px;
  }

  .researchThemeList {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .researchThemeList article,
  .researchThemeList article:nth-child(1),
  .researchThemeList article:nth-child(2),
  .researchThemeList article:nth-child(3),
  .researchThemeList article:nth-child(4),
  .researchThemeList article:nth-child(5),
  .researchThemeList article:nth-child(6),
  .researchThemeList article:nth-child(7),
  .researchThemeList article:nth-child(8) {
    grid-column: auto;
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: auto;
    padding: 24px 20px;
  }

  .researchThemeList article > span {
    font-size: 46px;
  }

  .researchThemeList h3 {
    margin-top: 4px;
    font-size: 23px;
  }

  .researchThemeList p {
    font-size: 17px;
  }
}

/* Research directions compact editorial list 4.13.5 */
.researchThemes {
  padding: clamp(58px, 6vw, 84px) 0;
  background: #f2f6f5;
}

.researchDirectionIntro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  width: var(--content);
  margin: 0 auto 28px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(32, 38, 41, 0.18);
  background: transparent;
}

.researchDirectionIntro h2 {
  max-width: 560px;
  margin: 4px 0 0;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.12;
}

.researchDirectionIntro p:last-child {
  max-width: 760px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #566165;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.72;
}

.researchThemeList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: var(--content);
  margin: 0 auto;
  border-top: 1px solid rgba(32, 38, 41, 0.14);
}

.researchThemeList article,
.researchThemeList article:nth-child(1),
.researchThemeList article:nth-child(2),
.researchThemeList article:nth-child(3),
.researchThemeList article:nth-child(4),
.researchThemeList article:nth-child(5),
.researchThemeList article:nth-child(6),
.researchThemeList article:nth-child(7),
.researchThemeList article:nth-child(8) {
  display: grid;
  grid-template-columns: 84px minmax(230px, 0.62fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: baseline;
  grid-column: auto;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 30px) 0;
  border: 0;
  border-bottom: 1px solid rgba(32, 38, 41, 0.14);
  background: transparent;
  box-shadow: none;
}

.researchThemeList article > span,
.researchThemeList article:nth-child(1) > span,
.researchThemeList article:nth-child(2) > span,
.researchThemeList article:nth-child(3) > span,
.researchThemeList article:nth-child(4) > span,
.researchThemeList article:nth-child(5) > span,
.researchThemeList article:nth-child(6) > span,
.researchThemeList article:nth-child(7) > span,
.researchThemeList article:nth-child(8) > span {
  position: static;
  color: var(--wine);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 1;
}

.researchThemeList article:nth-child(2) > span,
.researchThemeList article:nth-child(5) > span {
  color: #a66f09;
}

.researchThemeList article:nth-child(3) > span,
.researchThemeList article:nth-child(6) > span {
  color: #176b53;
}

.researchThemeList article:nth-child(4) > span,
.researchThemeList article:nth-child(7) > span {
  color: #315f86;
}

.researchThemeList h3,
.researchThemeList article:nth-child(1) h3,
.researchThemeList article:nth-child(8) h3 {
  max-width: none;
  margin: 0;
  color: #22282b;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.18;
}

.researchThemeList p,
.researchThemeList article:nth-child(1) p,
.researchThemeList article:nth-child(8) p {
  max-width: 760px;
  margin: 0;
  color: #566165;
  font-size: clamp(16.5px, 1.08vw, 18px);
  line-height: 1.62;
  opacity: 1;
}

@media (max-width: 900px) {
  .researchDirectionIntro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .researchThemeList article,
  .researchThemeList article:nth-child(1),
  .researchThemeList article:nth-child(2),
  .researchThemeList article:nth-child(3),
  .researchThemeList article:nth-child(4),
  .researchThemeList article:nth-child(5),
  .researchThemeList article:nth-child(6),
  .researchThemeList article:nth-child(7),
  .researchThemeList article:nth-child(8) {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .researchThemeList p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .researchThemes {
    padding: 44px 0;
  }

  .researchDirectionIntro,
  .researchThemeList {
    width: calc(100% - 32px);
  }

  .researchDirectionIntro h2 {
    font-size: 30px;
  }

  .researchThemeList article,
  .researchThemeList article:nth-child(1),
  .researchThemeList article:nth-child(2),
  .researchThemeList article:nth-child(3),
  .researchThemeList article:nth-child(4),
  .researchThemeList article:nth-child(5),
  .researchThemeList article:nth-child(6),
  .researchThemeList article:nth-child(7),
  .researchThemeList article:nth-child(8) {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px 0;
  }

  .researchThemeList article > span {
    font-size: 28px;
  }

  .researchThemeList h3 {
    font-size: 21px;
  }

  .researchThemeList p {
    font-size: 16.5px;
    line-height: 1.58;
  }
}

/* Research directions studio layout 4.13.6 */
.researchThemes {
  padding: clamp(54px, 6vw, 82px) 0;
  background: linear-gradient(180deg, #eef5f4 0%, #f8f7f2 100%);
}

.researchStudioIntro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  width: var(--content);
  margin: 0 auto clamp(28px, 4vw, 42px);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(32, 38, 41, 0.18);
}

.researchStudioIntro h2 {
  max-width: 760px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
}

.researchStudioIntro p:last-child {
  margin: 0;
  color: #566165;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.68;
}

.researchStudioGrid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  width: var(--content);
  margin: 0 auto;
}

.researchStudioGrid article {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(32, 38, 41, 0.14);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 42px rgba(37, 40, 43, 0.07);
}

.studioLead {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 26px;
  grid-row: span 3;
  padding: clamp(30px, 4vw, 46px);
  border-top: 5px solid var(--wine);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(242, 246, 245, 0.96)),
    var(--paper);
}

.studioLead .studioIndex {
  grid-row: span 2;
}

.studioIndex {
  color: var(--wine);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.studioLabel {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.researchStudioGrid h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.14;
}

.researchStudioGrid p {
  margin: 0;
  color: #566165;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.62;
}

.studioLead ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 2;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.studioLead li {
  padding: 8px 12px;
  border: 1px solid rgba(122, 38, 56, 0.18);
  background: rgba(122, 38, 56, 0.06);
  color: var(--wine-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.studioPanel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0 22px;
  padding: 26px 28px;
  border-top: 4px solid #1f5e50;
}

.studioPanel .studioLabel,
.studioPanel h3,
.studioPanel p {
  grid-column: 2;
}

.studioPanel .studioIndex {
  grid-row: 1 / span 3;
  color: #1f5e50;
  font-size: 42px;
}

.studioPanel h3 {
  font-size: clamp(22px, 1.75vw, 28px);
}

.studioPanel.accentGold {
  border-top-color: #b07b17;
}

.studioPanel.accentGold .studioIndex,
.studioPanel.accentGold .studioLabel {
  color: #9c6b12;
}

.studioPanel.accentGreen {
  border-top-color: #7a2638;
}

.studioPanel.accentGreen .studioIndex,
.studioPanel.accentGreen .studioLabel {
  color: var(--wine);
}

@media (max-width: 980px) {
  .researchStudioIntro,
  .researchStudioGrid {
    grid-template-columns: 1fr;
  }

  .studioLead {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .researchThemes {
    padding: 42px 0 48px;
  }

  .researchStudioIntro,
  .researchStudioGrid {
    width: calc(100% - 32px);
  }

  .researchStudioIntro {
    gap: 16px;
    margin-bottom: 22px;
  }

  .researchStudioIntro h2 {
    font-size: 28px;
  }

  .researchStudioIntro p:last-child {
    font-size: 16.5px;
    line-height: 1.58;
  }

  .studioLead,
  .studioPanel {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0 16px;
    padding: 22px 20px;
  }

  .studioIndex,
  .studioPanel .studioIndex {
    font-size: 36px;
  }

  .researchStudioGrid h3,
  .studioPanel h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .researchStudioGrid p {
    font-size: 16.5px;
    line-height: 1.56;
  }

  .studioLead ul {
    grid-column: 1 / -1;
    margin-top: 18px;
  }
}

/* Research directions compact studio correction 4.13.7 */
.researchStudioGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.studioLead {
  grid-column: 1 / -1;
  grid-row: auto;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.45fr);
  align-items: start;
  padding: clamp(26px, 3vw, 38px);
}

.studioLead .studioIndex {
  grid-row: auto;
}

.studioLead ul {
  grid-column: 3;
  align-self: stretch;
  align-content: start;
  margin-top: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(32, 38, 41, 0.16);
}

.studioPanel {
  display: block;
  min-height: 260px;
  padding: 26px 28px 28px;
}

.studioPanel .studioIndex {
  display: block;
  margin-bottom: 18px;
}

.studioPanel .studioLabel,
.studioPanel h3,
.studioPanel p {
  grid-column: auto;
}

@media (max-width: 980px) {
  .researchStudioGrid {
    grid-template-columns: 1fr;
  }

  .studioLead {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .studioLead ul {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    margin-top: 18px;
  }

  .studioPanel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .researchStudioGrid {
    gap: 14px;
  }

  .studioLead,
  .studioPanel {
    padding: 20px 18px;
  }
}

/* Site-wide review and research alignment 4.13.8 */
.researchThemes {
  padding: clamp(46px, 5vw, 68px) 0;
}

.researchStudioIntro {
  display: block;
  width: var(--content);
  max-width: 1120px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(37, 40, 43, 0.18);
}

.researchStudioIntro .kicker {
  margin-bottom: 12px;
}

.researchStudioIntro h2 {
  max-width: 920px;
  margin: 0 0 16px;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.12;
}

.researchStudioIntro p:last-child {
  max-width: 900px;
  margin: 0;
  color: #586165;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.65;
}

.researchStudioGrid {
  align-items: stretch;
}

.studioLead,
.studioPanel {
  box-shadow: 0 14px 34px rgba(37, 40, 43, 0.055);
}

.studioLead {
  min-height: 0;
}

.studioPanel {
  min-height: 0;
}

.studioLead li {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .researchThemes {
    padding-top: 42px;
  }

  .researchStudioIntro {
    width: calc(100% - 48px);
  }
}

@media (max-width: 680px) {
  .researchThemes {
    padding: 36px 0 42px;
  }

  .researchStudioIntro,
  .researchStudioGrid {
    width: calc(100% - 32px);
  }

  .researchStudioIntro h2 {
    font-size: 27px;
    line-height: 1.16;
  }

  .researchStudioIntro p:last-child {
    font-size: 16.5px;
    line-height: 1.58;
  }

  .studioLead,
  .studioPanel {
    padding: 18px 16px;
  }

  .studioLead li {
    white-space: normal;
  }
}

/* Research visual and keyword chips 4.13.9 */
.researchStudioIntro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(32, 38, 41, 0.12);
  border-bottom: 1px solid rgba(32, 38, 41, 0.12);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(241, 247, 246, 0.92));
  box-shadow: 0 18px 42px rgba(37, 40, 43, 0.055);
}

.researchStudioIntroCopy {
  align-self: center;
}

.researchStudioVisual {
  position: relative;
  height: clamp(220px, 22vw, 310px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 38, 41, 0.12);
  background: var(--paper);
}

.researchStudioVisual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.researchStudioVisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 8, 8, 0.08), rgba(36, 8, 8, 0.38));
}

.researchStudioVisual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.researchStudioVisual span,
.studioKeywords li {
  border: 1px solid rgba(122, 38, 56, 0.18);
  background: rgba(255, 253, 248, 0.88);
  color: var(--wine-deep);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
}

.researchStudioVisual span {
  padding: 8px 10px;
}

.studioKeywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.studioKeywords li {
  padding: 7px 10px;
  white-space: nowrap;
}

.studioPanel .studioKeywords {
  margin-top: 20px;
}

.studioPanel .studioKeywords li {
  background: rgba(255, 253, 248, 0.74);
}

.studioLead .studioKeywords {
  grid-column: 3;
  align-self: stretch;
  align-content: start;
  margin-top: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(32, 38, 41, 0.16);
}

@media (max-width: 980px) {
  .researchStudioIntro {
    grid-template-columns: 1fr;
  }

  .researchStudioVisual,
  .researchStudioVisual img {
    height: 220px;
    min-height: 0;
  }

  .studioLead .studioKeywords {
    grid-column: 1 / -1;
    margin-top: 18px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .researchStudioIntro {
    width: calc(100% - 32px);
    padding: 18px 16px;
  }

  .researchStudioVisual,
  .researchStudioVisual img {
    height: 190px;
    min-height: 0;
  }

  .studioKeywords {
    gap: 7px;
  }

  .studioKeywords li {
    font-size: 12.5px;
    white-space: normal;
  }
}

/* Research section header full-width correction 4.13.11 */
.researchThemes .researchStudioIntro {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(24px, 3vw, 36px);
  padding: clamp(34px, 4.2vw, 56px) max(24px, calc((100vw - var(--content)) / 2));
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: clamp(28px, 4vw, 54px);
  border: 0;
  border-top: 1px solid rgba(32, 38, 41, 0.08);
  border-bottom: 1px solid rgba(32, 38, 41, 0.12);
  background:
    radial-gradient(circle at 12% 20%, rgba(205, 159, 101, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(247, 251, 250, 0.98), rgba(237, 246, 244, 0.98));
  box-shadow: none;
  box-sizing: border-box;
}

.researchThemes .researchStudioIntro h2 {
  max-width: 980px;
  font-size: clamp(36px, 3.35vw, 52px);
  line-height: 1.1;
}

.researchThemes .researchStudioIntro p:last-child {
  max-width: 900px;
  font-size: clamp(18px, 1.18vw, 20px);
}

.researchThemes .researchStudioVisual {
  height: clamp(250px, 22vw, 330px);
}

@media (max-width: 980px) {
  .researchThemes .researchStudioIntro {
    grid-template-columns: 1fr;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .researchThemes .researchStudioIntro {
    width: 100%;
    padding: 28px 16px;
  }

  .researchThemes .researchStudioIntro h2 {
    font-size: 29px;
  }
}

/* English knowledge-sharing refinements 4.15.7 */
.englishKnowledgePage .englishKnowledgeThemes {
  width: var(--content);
  margin: 0 auto;
}

.englishKnowledgePage .strategyArticles {
  padding-top: 42px;
}

.englishArticleArchive {
  align-items: stretch;
}

.englishArticleArchive .contentCard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--card-accent);
  border-radius: 6px;
  background: var(--white);
}

.englishArticleArchive .contentCardBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.englishArticleArchive .contentCardBody h2 {
  font-size: clamp(21px, 1.7vw, 25px);
  line-height: 1.2;
}

.englishArticleArchive .contentCardBody > p:not(.contentMeta) {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-line-clamp: none;
}

.englishArticlePage .articleHeroEnglish {
  padding-bottom: 28px;
}

.englishArticlePage .articleHeroEnglish h1 {
  max-width: 980px;
  font-size: clamp(38px, 3.6vw, 54px);
}

.englishArticlePage .articleExcerptLong {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.6;
}

.englishArticleFeatured {
  margin-bottom: 42px;
}

.englishArticleFeatured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.englishArticleLayout {
  display: block;
  width: min(100% - 48px, 920px);
  margin-inline: auto;
}

.englishArticleContent {
  max-width: 880px;
  margin-inline: auto;
}

.englishArticleContent p,
.englishArticleContent li {
  font-size: 18px;
  line-height: 1.75;
}

.englishArticleContent h2 {
  margin: 1.35em 0 0.45em;
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 1.22;
}

.englishArticleContent .exampleBox {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  background: #fff8eb;
}

.englishArticleContent .exampleBox h2 {
  margin-top: 0;
  color: var(--wine);
  font-size: 24px;
}

.englishArticleContent.category-management {
  --article-accent: #9e2338;
  --article-accent-soft: #fbf1f2;
}

.englishArticleContent.category-marketing {
  --article-accent: #a8750f;
  --article-accent-soft: #fff7e8;
}

.englishArticleContent.category-technology {
  --article-accent: #176b53;
  --article-accent-soft: #edf8f4;
}

.englishArticleContent.category-research {
  --article-accent: #315f86;
  --article-accent-soft: #eef5fa;
}

.englishArticleContent.category-skills {
  --article-accent: #76506c;
  --article-accent-soft: #f7f0f6;
}

.englishArticleContent .exampleBox {
  border-left-color: var(--article-accent);
  background: var(--article-accent-soft);
}

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

  .englishArticlePage .articleLayout {
    display: block;
  }
}

@media (max-width: 640px) {
  .englishKnowledgePage .strategyArticles .contentGrid,
  .englishArticleArchive {
    grid-template-columns: 1fr;
  }

  .englishArticleArchive .contentCardBody {
    padding: 20px;
  }

  .englishArticlePage .articleHeroEnglish h1 {
    font-size: 34px;
  }

  .englishArticleContent p,
  .englishArticleContent li {
    font-size: 17px;
    line-height: 1.68;
  }

  .englishArticleContent .exampleBox {
    padding: 20px;
  }
}

/* Market Notes 4.17.2 */
.marketNotesPreview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
  padding: clamp(54px, 6vw, 82px) max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fffaf0 0%, #f5f0e6 100%);
  border-top: 1px solid rgba(122, 38, 56, 0.12);
  border-bottom: 1px solid rgba(122, 38, 56, 0.12);
}

.marketNotesPreviewIntro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}

.marketNotesPreviewIntro h2 {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.marketNotesPreviewIntro p:not(.kicker) {
  max-width: 560px;
  margin: 18px 0 22px;
  font-size: 18px;
}

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

.marketNotesPreviewGrid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(37, 40, 43, 0.12);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 34px rgba(37, 40, 43, 0.07);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketNotesPreviewGrid article:hover {
  border-color: rgba(122, 38, 56, 0.28);
  background: #fffdf8;
  transform: translateY(-3px);
}

.marketNotesPreviewGrid span,
.marketNoteLabel {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.marketNotesPreviewGrid h3 {
  margin: 20px 0 12px;
  font-size: clamp(21px, 1.75vw, 25px);
  line-height: 1.22;
}

.marketNotesPreviewGrid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.marketNotesHero > div {
  background: linear-gradient(145deg, #4f1b27 0%, #7a2638 58%, #9a3241 100%);
}

.marketNotesIntro {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 56px 0 30px;
}

.marketNotesIntro h2 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 42px);
}

.marketNotesFlow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--ivory);
}

.marketNotesFlow span {
  display: grid;
  min-height: 86px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  place-items: center;
  text-align: center;
}

.marketNotesFlow span:nth-child(1) {
  border-top: 4px solid var(--wine);
}

.marketNotesFlow span:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.marketNotesFlow span:nth-child(3) {
  border-top: 4px solid var(--green);
}

.marketNotesFlow span:nth-child(4) {
  border-top: 4px solid var(--ink);
}

.marketNotesFlow span:last-child {
  border-right: 0;
}

.marketNotesListing {
  padding: 28px 0 72px;
}

.marketNotesHeading {
  width: var(--content);
  margin: 0 auto 28px;
}

.marketNotesHeading h2 {
  max-width: 820px;
  font-size: clamp(32px, 3.2vw, 46px);
}

.marketNotesHeading p:not(.kicker) {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
}

.marketNotesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  width: var(--content);
  margin: 0 auto;
}

.marketNoteCard {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 18px 40px rgba(37, 40, 43, 0.08);
}

.marketNoteCard img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.marketNoteContent {
  padding: clamp(28px, 3.2vw, 44px);
}

.marketNoteContent h3 {
  margin: 14px 0 12px;
  font-size: clamp(24px, 2vw, 30px);
}

.marketNoteContent p {
  margin-bottom: 18px;
  font-size: 17px;
}

.marketNoteArticleBlock {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(37, 40, 43, 0.12);
}

.marketNoteSignal {
  margin: 22px 0 4px;
  padding: 20px;
  border: 1px solid rgba(191, 143, 44, 0.28);
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.94), rgba(255, 253, 248, 0.98));
}

.marketNoteArticleBlock strong {
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.marketNoteImplication {
  padding-top: 16px;
  border-top: 1px solid rgba(122, 38, 56, 0.18);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.marketNoteImplication strong {
  color: var(--wine);
}

.marketNotesCta,
.marketNotesInline {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: var(--content);
  margin: 0 auto 58px;
  padding: 28px;
  border: 1px solid rgba(122, 38, 56, 0.18);
  background: #fff8eb;
}

.marketNotesCta h2,
.marketNotesInline h2 {
  font-size: clamp(26px, 2.35vw, 34px);
}

.marketNotesCta p:not(.kicker),
.marketNotesInline p:not(.kicker) {
  margin: 0;
  font-size: 17px;
}

.marketNotesInline {
  margin-top: 18px;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .marketNotesPreview,
  .marketNotesIntro,
  .marketNotesCta,
  .marketNotesInline {
    grid-template-columns: 1fr;
  }

  .marketNotesPreviewGrid,
  .marketNotesGrid {
    grid-template-columns: 1fr;
  }

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

  .marketNoteCard img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .marketNotesPreviewGrid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .marketNotesPreview {
    padding: 44px 24px;
  }

  .marketNotesPreviewGrid {
    gap: 12px;
  }

  .marketNotesPreviewGrid article,
  .marketNoteContent,
  .marketNotesCta,
  .marketNotesInline {
    padding: 20px;
  }

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

  .marketNoteArticleBlock {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .marketNotesFlow span:nth-child(2) {
    border-right: 0;
  }

  .marketNotesFlow span:nth-child(1),
  .marketNotesFlow span:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .marketNotesHeading h2,
  .marketNotesPreviewIntro h2,
  .marketNotesIntro h2 {
    font-size: 30px;
  }

.marketNotesPreviewIntro p:not(.kicker),
  .marketNotesHeading p:not(.kicker),
  .marketNoteContent p {
    font-size: 16.5px;
  }
}

/* English homepage profile fit 4.18.0 */
.englishHomePage .homeProfile,
.englishHomePage .homeProfileCopy {
  overflow: hidden;
}

.englishHomePage .homeProfileCopy h2 {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: normal;
  font-size: clamp(27px, 2vw, 31px);
  line-height: 1.18;
}

.englishHomePage .homeProfileCopy h2 span {
  display: inline;
}

@media (max-width: 680px) {
  .englishHomePage .homeProfileCopy h2 {
    font-size: 22px;
    line-height: 1.2;
  }
}

/* Knowledge card sync 4.18.1 */
.strategyArticles .englishArticleArchive .contentCard {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.strategyArticles .englishArticleArchive .contentCardBody {
  display: block;
  padding: 18px 2px 0;
}

.strategyArticles .englishArticleArchive .contentCardBody h2 {
  font-size: 21px;
  line-height: 1.22;
}

.strategyArticles .englishArticleArchive .contentCardBody > p:not(.contentMeta) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.strategyArticles .englishArticleArchive .contentCardLink,
.strategyArticles .contentGrid .contentCardLink,
.articleGrid .contentCardLink,
.articleGrid .articleCard .contentCardLink {
  display: none;
}

.articleCard.category-marketing,
.contentCard.category-marketing {
  --card-accent: #a66f09;
}

.articleCard.category-research,
.contentCard.category-research {
  --card-accent: #315f86;
}

.articleCard.category-skills,
.contentCard.category-skills {
  --card-accent: #76506c;
}

.articleCard.category-market,
.contentCard.category-market {
  --card-accent: #0d4b45;
}

/* Knowledge card sync 4.18.2 */
.englishHomePage .articleExcerpt,
.homePage .articleExcerpt {
  -webkit-line-clamp: 3;
}


/* Compact pagination for article listing pages. */
.drhaniPagination { margin: 42px 0 6px; }
.drhaniPagination .page-numbers { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.drhaniPagination .page-numbers li { margin: 0; }
.drhaniPagination a,
.drhaniPagination .current { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid #d8dfdc; border-radius: 8px; color: #173d38; background: #fff; font-size: .92rem; font-weight: 700; text-decoration: none; }
.drhaniPagination a:hover,
.drhaniPagination a:focus-visible { border-color: #173d38; background: #eef5f2; color: #173d38; }
.drhaniPagination .current { border-color: #173d38; background: #173d38; color: #fff; }
@media (max-width: 520px) {
  .drhaniPagination { margin-top: 30px; }
  .drhaniPagination .page-numbers { gap: 6px; }
  .drhaniPagination a,
  .drhaniPagination .current { min-width: 36px; height: 36px; padding: 0 8px; }
}

/* Centered pagination alignment. */
.drhaniPagination {
  display: flex;
  justify-content: center;
  margin: 42px auto 6px;
}
.drhaniPagination .page-numbers {
  justify-content: center;
}
@media (max-width: 520px) {
  .drhaniPagination {
    margin: 30px auto 6px;
  }
}


/* Static social contact channels */
.contactChannels .kicker {
  margin-bottom: 10px;
}

.contactSocialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.contactSocialLinks .button {
  min-width: 132px;
}

.contactChannelNote {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}


/* Social contact cards */
.contactLayoutSocial {
  align-items: start;
}

.contactSummary {
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
}

.contactSummary h2 {
  max-width: 430px;
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.contactSummary p {
  max-width: 510px;
  margin: 0 0 14px;
  font-size: 17px;
}

.contactSocialList {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contactSocialCard {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contactSocialCard:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow: 0 10px 24px rgba(36, 43, 45, 0.08);
}

.contactSocialMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.contactSocialLinkedin .contactSocialMark {
  background: #0a66c2;
}

.contactSocialFacebook .contactSocialMark {
  background: #1877f2;
  font-size: 26px;
}

.contactSocialCopy {
  display: grid;
  gap: 4px;
}

.contactSocialCopy strong {
  font-size: 17px;
}

.contactSocialCopy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contactSocialArrow {
  color: var(--wine);
  font-size: 23px;
  line-height: 1;
}

@media (max-width: 640px) {
  .contactSummary {
    padding-top: 0;
    border-top: 0;
  }

  .contactSummary h2 {
    font-size: 32px;
  }

  .contactSocialCard {
    gap: 12px;
    padding: 14px;
  }
}


.contactSocialMark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}


/* Editorial contact page */
.contactEditorialHero {
  background: #111a25;
  color: var(--white);
}

.contactEditorialHeroInner {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(88px, 12vw, 168px) 0 clamp(84px, 10vw, 142px);
}

.contactEditorialHero .kicker {
  margin-bottom: 24px;
}

.contactEditorialHero h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contactEditorialLede {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.contactEditorialContent {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(52px, 9vw, 144px);
  width: var(--content);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.contactEditorialIntro {
  padding-top: 5px;
}

.contactEditorialIntro .kicker {
  margin-bottom: 16px;
}

.contactEditorialIntro h2 {
  max-width: 440px;
  margin: 0 0 22px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.contactEditorialIntro p:not(.kicker) {
  max-width: 480px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

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

.contactEditorialLabel {
  margin: 0;
  padding: 15px 0 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contactEditorialChannel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contactEditorialChannel:last-child {
  border-bottom: 1px solid var(--line);
}

.contactEditorialChannel:hover {
  color: var(--wine);
}

.contactEditorialMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.contactEditorialMark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contactEditorialLinkedin .contactEditorialMark {
  color: #0a66c2;
}

.contactEditorialFacebook .contactEditorialMark {
  color: #1877f2;
}

.contactEditorialChannelCopy {
  display: grid;
  gap: 5px;
}

.contactEditorialChannelCopy strong {
  font-size: 20px;
}

.contactEditorialChannelCopy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contactEditorialArrow {
  color: var(--wine);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.contactEditorialChannel:hover .contactEditorialArrow {
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .contactEditorialContent {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contactEditorialIntro p:not(.kicker) {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  .contactEditorialHeroInner {
    padding: 76px 0 80px;
  }

  .contactEditorialHero h1 {
    font-size: clamp(45px, 12vw, 58px);
  }

  .contactEditorialContent {
    padding: 64px 0 78px;
    gap: 46px;
  }

  .contactEditorialChannel {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 22px 0;
  }

  .contactEditorialMark {
    width: 38px;
    height: 38px;
  }

  .contactEditorialChannelCopy strong {
    font-size: 18px;
  }
}


/* Compact contact hero */
.contactEditorialHeroInner {
  padding: clamp(56px, 7vw, 86px) 0 clamp(60px, 7vw, 92px);
}

.contactEditorialHero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.contactEditorialLede {
  max-width: 500px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .contactEditorialHeroInner {
    padding: 52px 0 58px;
  }

  .contactEditorialHero h1 {
    font-size: 43px;
  }
}


/* Focus the contact page on the two official channels */
.contactEditorialContent {
  display: block;
  padding: clamp(62px, 8vw, 100px) 0;
}

.contactEditorialChannels {
  max-width: 780px;
  margin: 0 auto;
}


/* Contact channels integrated into the hero */
.contactHeroWithChannels .contactEditorialHeroInner {
  padding-bottom: 0;
}

.contactHeroWithChannels .contactEditorialHeroCopy {
  padding-bottom: clamp(42px, 5vw, 64px);
}

.contactEditorialHeroChannels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contactEditorialHeroChannel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px 0;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}

.contactEditorialHeroChannel + .contactEditorialHeroChannel {
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.contactEditorialHeroChannel:hover {
  color: var(--white);
}

.contactEditorialHeroChannel .contactEditorialMark {
  width: 38px;
  height: 38px;
}

.contactEditorialHeroChannel .contactEditorialMark svg {
  width: 28px;
  height: 28px;
}

.contactEditorialHeroChannel .contactEditorialChannelCopy strong {
  color: var(--white);
  font-size: 19px;
}

.contactEditorialHeroChannel .contactEditorialChannelCopy small {
  color: rgba(255, 255, 255, 0.66);
}

.contactEditorialHeroChannel .contactEditorialArrow {
  color: var(--gold);
}

@media (max-width: 720px) {
  .contactHeroWithChannels .contactEditorialHeroCopy {
    padding-bottom: 38px;
  }

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

  .contactEditorialHeroChannel {
    min-height: 78px;
    padding: 15px 0;
  }

  .contactEditorialHeroChannel + .contactEditorialHeroChannel {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }
}


/* Light contact hero with prominent social marks */
.contactEditorialHero {
  background: #eee9e2;
  color: var(--ink);
}

.contactEditorialHero h1 {
  color: var(--ink);
}

.contactEditorialHero .kicker {
  color: var(--wine);
}

.contactEditorialHeroChannels {
  border-top-color: rgba(35, 43, 49, 0.2);
}

.contactEditorialHeroChannel {
  color: var(--ink);
}

.contactEditorialHeroChannel + .contactEditorialHeroChannel {
  border-left-color: rgba(35, 43, 49, 0.2);
}

.contactEditorialHeroChannel:hover {
  color: var(--wine);
}

.contactEditorialHeroChannel .contactEditorialMark {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  color: var(--white);
}

.contactEditorialHeroChannel .contactEditorialMark svg {
  width: 34px;
  height: 34px;
}

.contactEditorialHeroChannel .contactEditorialChannelCopy strong {
  color: var(--ink);
  font-size: 21px;
}

.contactEditorialHeroChannel .contactEditorialChannelCopy small {
  color: var(--muted);
  font-size: 15px;
}

.contactEditorialHeroChannel .contactEditorialArrow {
  color: var(--wine);
}

.contactEditorialHeroChannel:hover .contactEditorialArrow {
  transform: translate(3px, -3px);
}

.contactEditorialHeroChannel.contactEditorialLinkedin .contactEditorialMark {
  background: #0a66c2;
}

.contactEditorialHeroChannel.contactEditorialFacebook .contactEditorialMark {
  background: #1877f2;
}

@media (max-width: 720px) {
  .contactEditorialHeroChannel + .contactEditorialHeroChannel {
    border-top-color: rgba(35, 43, 49, 0.2);
    border-left: 0;
  }

  .contactEditorialHeroChannel .contactEditorialMark {
    width: 52px;
    height: 52px;
  }
}


.contactEditorialHeroChannel {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 20px;
}

@media (max-width: 720px) {
  .contactEditorialHeroChannel {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
  }
}


/* Contact pages — editorial social-card redesign */
.contactEditorialPage .contactEditorialHero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(159, 54, 77, 0.10), transparent 29%),
    linear-gradient(135deg, #f7f3ed 0%, #eee6dc 100%);
  color: #242b31;
}

.contactEditorialPage .contactEditorialHeroInner {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(46px, 5.8vw, 76px) 0 0 !important;
}

.contactEditorialPage .contactEditorialHeroCopy {
  display: grid;
  gap: 18px;
  padding: 0 0 clamp(38px, 4.4vw, 56px) !important;
}

.contactEditorialPage .contactEditorialHero .kicker {
  margin: 0;
  color: #8d2638;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contactEditorialPage .contactEditorialHero h1 {
  max-width: 850px;
  margin: 0;
  color: #242b31;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.contactEditorialPage .contactEditorialHeroChannels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
  padding: 0 0 clamp(34px, 4vw, 52px);
  border: 0;
}

.contactEditorialPage .contactEditorialHeroChannel,
.contactEditorialPage .contactEditorialHeroChannel + .contactEditorialHeroChannel {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 130px;
  gap: 20px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(36, 43, 49, 0.10);
  border-left: 1px solid rgba(36, 43, 49, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(47, 34, 28, 0.08);
  color: #242b31;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contactEditorialPage .contactEditorialHeroChannel::before {
  position: absolute;
  right: -48px;
  bottom: -62px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(141, 38, 56, 0.05);
  content: "";
}

.contactEditorialPage .contactEditorialHeroChannel:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 38, 56, 0.24);
  box-shadow: 0 18px 34px rgba(47, 34, 28, 0.13);
  color: #242b31;
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialMark {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(10, 102, 194, 0.18);
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialMark svg {
  width: 39px;
  height: 39px;
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialChannelCopy {
  position: relative;
  z-index: 1;
  gap: 6px;
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialChannelCopy strong {
  color: #242b31;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.1;
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialChannelCopy small {
  color: #5e666c;
  font-size: 14px;
  line-height: 1.45;
}

.contactEditorialPage .contactEditorialHeroChannel .contactEditorialArrow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(141, 38, 56, 0.24);
  border-radius: 50%;
  color: #8d2638;
  font-size: 24px;
  line-height: 1;
  place-items: center;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.contactEditorialPage .contactEditorialHeroChannel:hover .contactEditorialArrow {
  transform: translate(3px, -3px);
  background: #8d2638;
  color: #fff;
}

@media (max-width: 720px) {
  .contactEditorialPage .contactEditorialHeroInner {
    min-height: 0;
    padding-top: 42px !important;
  }

  .contactEditorialPage .contactEditorialHeroCopy {
    padding-bottom: 32px !important;
  }

  .contactEditorialPage .contactEditorialHero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .contactEditorialPage .contactEditorialHeroChannels {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 32px;
  }

  .contactEditorialPage .contactEditorialHeroChannel,
  .contactEditorialPage .contactEditorialHeroChannel + .contactEditorialHeroChannel {
    grid-template-columns: 60px minmax(0, 1fr) 38px;
    min-height: 104px;
    gap: 15px;
    padding: 18px;
    border-left: 1px solid rgba(36, 43, 49, 0.10);
  }

  .contactEditorialPage .contactEditorialHeroChannel .contactEditorialMark {
    width: 60px;
    height: 60px;
  }

  .contactEditorialPage .contactEditorialHeroChannel .contactEditorialMark svg {
    width: 34px;
    height: 34px;
  }

  .contactEditorialPage .contactEditorialHeroChannel .contactEditorialArrow {
    width: 37px;
    height: 37px;
    font-size: 21px;
  }

  .contactEditorialPage .contactEditorialHeroChannel .contactEditorialChannelCopy strong {
    font-size: 21px;
  }
}

.articleHero .articleTopicLink {
	  display: inline-block;
	  margin: 0 0 16px;
	  text-decoration: none;
	}
.articleHero .articleTopicLink:hover,
.articleHero .articleTopicLink:focus-visible {
	  text-decoration: underline;
	  text-underline-offset: 4px;
	}



/* Article hierarchy: page collection and category must not sit on the same line. */
.articleHero > .articleBack,
.articleHero > .articleTopicLink {
  display: block !important;
  width: max-content;
}

.articleHero > .articleBack {
  margin-bottom: 18px !important;
}

.articleHero > .articleTopicLink {
  margin-bottom: 20px !important;
}
