/* =========================================================
   China Business School - scoped page system
   ========================================================= */

body.china-business-school-page {
  background: var(--ivory);
}

body.china-business-school-page main {
  overflow-x: hidden;
  overflow-x: clip;
}

body.china-business-school-page #why-this-school,
body.china-business-school-page #learning-journey,
body.china-business-school-page #applied-learning,
body.china-business-school-page #inside-china-business,
body.china-business-school-page #factory-sourcing-quality,
body.china-business-school-page #immersion-program,
body.china-business-school-page #who-it-is-for {
  scroll-margin-top: calc(var(--header-height) - 30px);
}

.cbs-container {
  width: min(1380px, calc(100% - 40px));
  margin-inline: auto;
}

.cbs-section {
  position: relative;
  padding-block: clamp(76px, 7vw, 116px);
}

.cbs-section--ivory {
  background: var(--ivory);
}

.cbs-section--white {
  background: var(--white);
}

.cbs-section--navy,
.cbs-final-section {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(179, 25, 66, 0.24), transparent 22rem),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 58%, #04112d 100%);
}

.cbs-section--navy h2,
.cbs-section--navy h3,
.cbs-final-section h2 {
  color: var(--white);
}

.cbs-section--navy p,
.cbs-final-section p {
  color: rgba(255, 255, 255, 0.76);
}

.cbs-section--navy .section-kicker,
.cbs-final-section .section-kicker {
  color: var(--gold-light);
}

.cbs-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 34px;
}

.cbs-head p {
  margin-top: 12px;
  max-width: 58ch;
  color: var(--muted-strong);
}

.cbs-section-marker {
  position: absolute;
  top: 8px;
  right: 5vw;
  z-index: 0;
  color: rgba(6, 26, 64, 0.045);
  font-family: var(--serif);
  font-size: clamp(6.5rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---------- Hero ---------- */
.cbs-hero {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

.cbs-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}

.cbs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(94deg, rgba(2, 8, 18, 0.96) 0%, rgba(2, 8, 18, 0.82) 40%, rgba(2, 8, 18, 0.35) 65%, rgba(2, 8, 18, 0.04) 92%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.2) 100%);
}

.cbs-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: calc(var(--header-height) + 40px) 64px;
}

.cbs-hero-copy {
  max-width: 610px;
}

.cbs-hero-copy .section-kicker {
  color: var(--gold-light);
}

.cbs-hero-copy h1 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.cbs-motto {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  font-style: italic;
  line-height: 1.35;
}

.cbs-hero-body {
  max-width: 50ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.62;
}

.cbs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.cbs-hero-actions .text-link {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cbs-hero-actions .text-link::after {
  width: 36px;
  background: var(--gold-light);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.cbs-hero-actions .text-link:hover::after {
  width: 36px;
  transform: translateX(4px);
}

/* ---------- Local anchor navigation ---------- */
.cbs-anchor-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  border-bottom: 1px solid rgba(183, 138, 45, 0.38);
  background: rgba(247, 242, 231, 0.96);
  box-shadow: 0 10px 24px rgba(6, 26, 64, 0.08);
  backdrop-filter: blur(14px);
}

.cbs-anchor-nav::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: 58px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247, 242, 231, 0), rgba(247, 242, 231, 0.98));
}

.cbs-anchor-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cbs-anchor-nav-inner::-webkit-scrollbar {
  display: none;
}

.cbs-anchor-nav a {
  position: relative;
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 3px solid transparent;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cbs-anchor-nav a:hover,
.cbs-anchor-nav a:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: rgba(255, 255, 255, 0.42);
}

/* ---------- Why This School ---------- */
.cbs-why-section {
  overflow: hidden;
}

.cbs-route-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 24%, rgba(179, 25, 66, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 34% 62%, rgba(6, 26, 64, 0.13) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 28%, rgba(183, 138, 45, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 86% 70%, rgba(6, 26, 64, 0.12) 0 3px, transparent 4px),
    repeating-linear-gradient(118deg, rgba(6, 26, 64, 0.052) 0, rgba(6, 26, 64, 0.052) 1px, transparent 1px, transparent 88px);
  opacity: 0.72;
}

.cbs-why {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.cbs-why-statement {
  position: relative;
  padding-left: 22px;
}

.cbs-why-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.cbs-why-statement h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.cbs-why-statement > p:not(.cbs-pull-statement) {
  margin-top: 14px;
  max-width: 48ch;
  color: var(--muted-strong);
}

.cbs-pull-statement {
  margin-top: 28px;
  max-width: 24ch;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.36rem, 2.8vw, 2.15rem);
  font-style: italic;
  line-height: 1.14;
}

.cbs-principles {
  display: grid;
  gap: 0;
}

.cbs-principle {
  position: relative;
  padding: 26px 0 26px 74px;
  border-top: 1px solid rgba(6, 26, 64, 0.16);
}

.cbs-principle:last-child {
  border-bottom: 1px solid rgba(6, 26, 64, 0.16);
}

.cbs-principle-num {
  position: absolute;
  left: 0;
  top: 22px;
  color: rgba(183, 138, 45, 0.92);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.cbs-principle h3 {
  font-size: 1.22rem;
}

.cbs-principle p {
  margin-top: 8px;
  max-width: 48ch;
  color: var(--muted);
}

/* ---------- Learning Journey ---------- */
.cbs-journey-section {
  overflow: hidden;
}

.cbs-journey-section .cbs-container {
  position: relative;
  z-index: 1;
}

.cbs-journey-track {
  position: relative;
  display: grid;
  gap: 22px;
}

.cbs-journey-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0.78;
}

.cbs-stage {
  position: relative;
  min-width: 0;
  padding: 34px 30px 32px;
  border-top: 3px solid rgba(183, 138, 45, 0.72);
  background: rgba(247, 242, 231, 0.86);
}

.cbs-stage-node {
  position: absolute;
  top: -11px;
  left: 30px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(183, 138, 45, 0.45);
}

.cbs-stage--02 {
  background: rgba(255, 255, 255, 0.95);
  border-top-color: rgba(179, 25, 66, 0.6);
}

.cbs-stage--02 .cbs-stage-node {
  background: var(--red);
}

.cbs-stage--03 {
  color: var(--white);
  border-top-color: var(--gold);
  background:
    radial-gradient(circle at 100% 0%, rgba(179, 25, 66, 0.24), transparent 16rem),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 30px 72px rgba(2, 8, 18, 0.2);
}

.cbs-stage--03 h3,
.cbs-stage--03 h4,
.cbs-stage--03 .cbs-stage-num {
  color: var(--white);
}

.cbs-stage--03 p,
.cbs-stage--03 .cbs-stage-topics li {
  color: rgba(255, 255, 255, 0.78);
}

.cbs-stage--03 .cbs-stage-topics li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.cbs-stage--03 .cbs-stage-node {
  background: var(--gold);
  border-color: var(--navy-deep);
}

.cbs-stage-num {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 0.9;
}

.cbs-stage h3 {
  margin-top: 12px;
  font-size: clamp(1.42rem, 2.2vw, 1.9rem);
}

.cbs-stage-subtitle {
  margin-top: 8px;
  color: var(--muted-strong);
  font-weight: 750;
  line-height: 1.48;
}

.cbs-stage h4 {
  margin-top: 22px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cbs-stage--03 h4 {
  color: var(--gold-light);
}

.cbs-stage-topics {
  margin-top: 8px;
  display: grid;
  gap: 0;
  list-style: none;
}

.cbs-stage-topics li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 750;
}

.cbs-stage-topics li:first-child {
  border-top: 0;
}

/* ---------- Applied Learning ---------- */
.cbs-applied {
  display: grid;
  gap: 30px;
}

.cbs-applied-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy-deep);
}

.cbs-applied-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.04) 0%, rgba(2, 8, 18, 0.34) 100%);
  pointer-events: none;
}

.cbs-applied-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 64% 38%;
  transition: transform 460ms ease;
}

.cbs-applied-media:hover img {
  transform: scale(1.025);
}

.cbs-applied-media figcaption {
  position: absolute;
  left: 0;
  right: 18%;
  bottom: 0;
  z-index: 2;
  padding: 16px 22px;
  color: var(--gold-light);
  background: rgba(2, 8, 18, 0.88);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
}

.cbs-applied-copy {
  position: relative;
  align-self: center;
}

.cbs-applied-copy::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -28px;
  z-index: 0;
  width: 72%;
  height: 46%;
  background: linear-gradient(135deg, rgba(6, 26, 64, 0.08), rgba(183, 138, 45, 0.08));
}

.cbs-applied-copy > * {
  position: relative;
  z-index: 1;
}

.cbs-applied-copy h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.cbs-applied-copy > p:not(.cbs-applied-highlight) {
  max-width: 46ch;
  margin-top: 14px;
  color: var(--muted-strong);
}

.cbs-applied-highlight {
  margin-top: 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.35;
}

.cbs-theme-sequence {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}

.cbs-theme-sequence li {
  position: relative;
  padding-left: 15px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cbs-theme-sequence li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Inside China Business ---------- */
.cbs-flagship-section {
  overflow: hidden;
}

.cbs-flagship-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.027);
  font-family: var(--serif);
  font-size: clamp(8rem, 30vw, 24rem);
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cbs-flagship-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(116deg, rgba(229, 199, 119, 0.06) 0, rgba(229, 199, 119, 0.06) 1px, transparent 1px, transparent 118px),
    repeating-linear-gradient(24deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 152px);
  pointer-events: none;
}

.cbs-flagship-glow {
  position: absolute;
  top: -24%;
  right: -16%;
  z-index: 0;
  width: min(640px, 68vw);
  height: min(640px, 68vw);
  background: radial-gradient(circle, rgba(179, 25, 66, 0.32) 0%, transparent 68%);
  pointer-events: none;
}

.cbs-flagship-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.cbs-flagship-head {
  max-width: 620px;
}

.cbs-flagship-head > p:not(.cbs-flagship-statement) {
  max-width: 50ch;
  margin-top: 18px;
}

.cbs-flagship-statement {
  margin-top: 18px;
  padding-block: 18px;
  border-top: 1px solid rgba(229, 199, 119, 0.36);
  border-bottom: 1px solid rgba(229, 199, 119, 0.22);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-style: italic;
  line-height: 1.16;
}

.cbs-feature-grid {
  display: grid;
  gap: 0;
}

.cbs-feature-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cbs-feature-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cbs-feature-row > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.cbs-feature-row h3 {
  font-size: 1.12rem;
}

.cbs-feature-row p {
  margin-top: 5px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.52;
}

/* ---------- Factory, Sourcing and Quality ---------- */
.cbs-factory {
  display: grid;
  gap: 30px;
}

.cbs-factory-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy-deep);
}

.cbs-factory-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.cbs-factory-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.18) 0%, rgba(2, 8, 18, 0.4) 100%);
  pointer-events: none;
}

.cbs-factory-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 82%;
  transition: transform 460ms ease;
}

.cbs-factory-media:hover img {
  transform: scale(1.025);
}

.cbs-factory-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  max-width: 310px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(2, 8, 18, 0.84);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.34;
}

.cbs-factory-copy {
  align-self: center;
}

.cbs-factory-copy h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.cbs-factory-copy > p {
  margin-top: 14px;
  max-width: 47ch;
  color: var(--muted-strong);
}

.cbs-factory-areas {
  margin-top: 26px;
  display: grid;
  gap: 0;
}

.cbs-factory-area {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.cbs-factory-area:last-child {
  border-bottom: 1px solid var(--line);
}

.cbs-factory-area h3 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.24;
}

.cbs-factory-area p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* ---------- Immersion ---------- */
.cbs-immersion {
  position: relative;
  min-height: clamp(680px, 74vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.cbs-immersion-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cbs-immersion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 42%;
}

.cbs-immersion-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(98deg, rgba(2, 8, 18, 0.96) 0%, rgba(2, 8, 18, 0.82) 42%, rgba(2, 8, 18, 0.34) 68%, rgba(2, 8, 18, 0.04) 94%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.12) 0%, rgba(2, 8, 18, 0.28) 100%);
}

.cbs-immersion-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 72px;
}

.cbs-immersion-copy {
  max-width: 630px;
}

.cbs-immersion-copy .section-kicker {
  color: var(--gold-light);
}

.cbs-immersion-copy h2 {
  max-width: 13ch;
  color: var(--white);
  text-wrap: balance;
}

.cbs-immersion-copy > p:not(.cbs-immersion-route):not(.cbs-immersion-notice) {
  margin-top: 16px;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.84);
}

.cbs-immersion-route {
  margin-top: 24px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.9;
}

.cbs-immersion-route span {
  margin-inline: 4px;
  color: var(--gold-light);
  font-weight: 700;
}

.cbs-immersion-copy .btn {
  margin-top: 26px;
}

.cbs-immersion-notice {
  margin-top: 20px;
  max-width: 58ch;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.52;
}

/* ---------- Who It Is For ---------- */
.cbs-audience-section {
  overflow: hidden;
}

.cbs-audience {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.cbs-audience-head h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.cbs-audience-head p {
  margin-top: 14px;
  max-width: 46ch;
  color: var(--muted-strong);
}

.cbs-audience-list {
  display: grid;
  gap: 0;
}

.cbs-audience-list article {
  position: relative;
  padding: 22px 0 22px 50px;
  border-top: 1px solid rgba(6, 26, 64, 0.16);
}

.cbs-audience-list article:last-child {
  border-bottom: 1px solid rgba(6, 26, 64, 0.16);
}

.cbs-audience-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.cbs-audience-list h3 {
  font-size: 1.18rem;
}

.cbs-audience-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* ---------- Final CTA ---------- */
.cbs-final-section {
  padding-block: clamp(74px, 7vw, 104px);
  border-bottom: 1px solid rgba(229, 199, 119, 0.14);
}

.cbs-final-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), rgba(229, 199, 119, 0));
}

.cbs-final-inner {
  display: grid;
  gap: 28px;
  align-items: end;
}

.cbs-final-copy {
  max-width: 760px;
}

.cbs-final-copy h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.cbs-final-copy > p:not(.cbs-final-note) {
  margin-top: 14px;
  max-width: 62ch;
}

.cbs-final-future {
  padding-top: 14px;
  border-top: 1px solid rgba(229, 199, 119, 0.22);
}

.cbs-final-note {
  margin-top: 14px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.cbs-final-actions .text-link {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cbs-final-actions .text-link::after {
  background: var(--gold-light);
}

/* =========================================================
   Tablet
   ========================================================= */
@media (min-width: 700px) {
  .cbs-container {
    width: min(1380px, calc(100% - 48px));
  }

  .cbs-why {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 62px;
    align-items: start;
  }

  .cbs-principle--offset {
    margin-left: 46px;
  }

  .cbs-journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 26px;
  }

  .cbs-stage--01 {
    margin-top: 68px;
  }

  .cbs-stage--02 {
    margin-top: 32px;
  }

  .cbs-stage--03 {
    margin-top: 0;
  }

  .cbs-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 76px;
    right: -24px;
    z-index: 3;
    width: 18px;
    height: 18px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
  }

  .cbs-applied-section,
  .cbs-factory-section {
    padding-block: 84px;
  }

  .cbs-applied,
  .cbs-factory {
    align-items: center;
  }

  .cbs-applied {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    gap: 44px;
    min-height: 0;
  }

  .cbs-applied-media {
    height: clamp(500px, 52vw, 560px);
    min-height: 0;
    margin-left: 0;
    border-right: 2px solid rgba(183, 138, 45, 0.86);
    border-radius: var(--radius-sm);
  }

  .cbs-applied-media img {
    object-position: 58% 42%;
  }

  .cbs-flagship-grid {
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    gap: 58px;
  }

  .cbs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
  }

  .cbs-factory {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 44px;
  }

  .cbs-factory-media {
    order: 2;
    height: clamp(500px, 52vw, 560px);
    min-height: 0;
    margin-right: 0;
    border-radius: var(--radius-sm);
  }

  .cbs-factory-media img {
    object-position: 50% 66%;
  }

  .cbs-factory-copy {
    order: 1;
  }

  .cbs-audience {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    align-items: start;
    gap: 60px;
  }

  .cbs-audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
  }

  .cbs-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* =========================================================
   Desktop
   ========================================================= */
@media (min-width: 1024px) {
  body.china-business-school-page #why-this-school,
  body.china-business-school-page #learning-journey,
  body.china-business-school-page #applied-learning,
  body.china-business-school-page #inside-china-business,
  body.china-business-school-page #factory-sourcing-quality,
  body.china-business-school-page #immersion-program,
  body.china-business-school-page #who-it-is-for {
    scroll-margin-top: calc(var(--header-height) - 30px);
  }

  .cbs-anchor-nav::after {
    display: none;
  }

  .cbs-anchor-nav-inner {
    justify-content: center;
  }

  .cbs-anchor-nav a {
    padding-inline: 17px;
  }

  .cbs-hero {
    min-height: clamp(720px, 82vh, 840px);
  }

  .cbs-hero-body {
    font-size: 1.05rem;
  }

  .cbs-applied-section,
  .cbs-factory-section {
    padding-block: 92px;
  }
}

@media (min-width: 1200px) {
  .cbs-container {
    width: min(1380px, calc(100% - 80px));
  }

  .cbs-anchor-nav a {
    padding-inline: 20px;
  }

  .cbs-journey-track {
    gap: 34px;
  }

  .cbs-applied-section > .cbs-container,
  .cbs-factory-section > .cbs-container {
    width: min(1440px, calc(100% - 72px));
  }

  .cbs-applied {
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
    gap: 56px;
  }

  .cbs-applied-media {
    height: clamp(560px, 38vw, 620px);
  }

  .cbs-factory {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 56px;
  }

  .cbs-factory-media {
    height: clamp(560px, 38vw, 620px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cbs-applied-media img,
  .cbs-factory-media img {
    transition: none;
  }

  .cbs-applied-media:hover img,
  .cbs-factory-media:hover img {
    transform: none;
  }
}
