:root {
  --navy: #061a2f;
  --navy-2: #102d4b;
  --ink: #142033;
  --muted: #68727f;
  --paper: #f7f2ea;
  --surface: #ffffff;
  --line: #ded3c4;
  --gold: #b88a3b;
  --gold-2: #d0ae67;
  --teal: #1f5e52;
  --green: #255f4d;
  --rose: #6f3d3a;
  --shadow: 0 18px 46px rgba(6, 26, 47, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 223, 212, 0.85);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f6efe2, #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 7px 18px rgba(6, 26, 47, 0.07);
  overflow: hidden;
}

.brand-mark span {
  width: 18px;
  height: 26px;
  display: block;
  position: relative;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 22px;
  transform: skewY(-18deg);
}

.brand-mark span::before {
  left: 0;
  top: 0;
  background: #c4652d;
}

.brand-mark span::after {
  right: 0;
  bottom: 0;
  background: #2b2d31;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #344258;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 7px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #fff;
  color: var(--navy);
}

.nav-translate {
  appearance: none;
  border: 1px solid rgba(184, 138, 59, 0.55);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-radius: 7px;
  padding: 9px 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-translate:hover {
  background: #fff;
  border-color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 7px 18px rgba(6, 26, 47, 0.16);
}

.hero {
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.055), transparent 38%),
    var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--navy);
  transform: none;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.62fr);
  gap: 34px;
  align-items: center;
  padding: 48px 0 54px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 700;
  margin-top: 10px;
  max-width: 760px;
}

.hero p {
  color: #4c596b;
  font-size: clamp(16px, 1.7vw, 18px);
  margin: 14px 0 0;
  max-width: 660px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: #091b31;
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(6, 26, 47, 0.07);
}

.hub-map {
  display: grid;
  gap: 10px;
}

.hub-item {
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
}

.hub-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.hub-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.panel-label {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-directory {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
}

.hero-directory a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 12px 13px;
  min-height: 86px;
}

.hero-directory strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.hero-directory span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 5px;
}

.band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.compact-band {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.compact-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin: 14px 0 0;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.05);
}

.index-grid article {
  padding: 18px;
  border-right: 1px solid var(--line);
  min-height: 145px;
}

.index-grid article:last-child {
  border-right: 0;
}

.index-grid b {
  color: var(--gold);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.index-grid strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.index-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 7px 11px;
  color: #42506a;
  font-size: 12px;
  font-weight: 700;
}

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

.app-summary-band {
  padding-top: 30px;
  padding-bottom: 18px;
}

.app-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 20px rgba(6, 26, 47, 0.045);
}

.app-summary-strip article {
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  min-height: 92px;
}

.app-summary-strip article:last-child {
  border-right: 0;
}

.app-summary-strip b {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.app-summary-strip strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.15;
}

.app-summary-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 6px;
}

.app-summary-note {
  margin-top: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
}

.course-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.05);
}

.course-system-grid article,
.course-system-entry {
  min-height: 265px;
  padding: 18px;
  border-right: 1px solid var(--line);
  display: block;
  transition: background 0.16s ease, transform 0.16s ease;
}

.course-system-grid article:last-child,
.course-system-entry:last-child {
  border-right: 0;
}

.course-system-entry:hover {
  background: #fbf8f2;
  transform: translateY(-1px);
}

.course-system-grid b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
}

.course-system-grid h3 {
  color: var(--navy);
  font-size: 21px;
}

.course-system-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
  margin: 12px 0 0;
}

.course-system-grid span {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eadfce;
  color: #6c5527;
  font-size: 12px;
  line-height: 1.42;
}

.course-system-entry span::after {
  content: "Open entrance";
  display: inline-block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.external-support-block {
  padding-top: 54px;
}

.external-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.05);
}

.external-route-card {
  min-height: 292px;
  padding: 18px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.16s ease, transform 0.16s ease;
}

.external-route-card:last-child {
  border-right: 0;
}

.external-route-card:hover {
  background: #fbf8f2;
  transform: translateY(-1px);
}

.external-route-card b {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.external-route-card strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
}

.external-route-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
}

.external-route-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.external-route-card em {
  margin-top: auto;
  color: var(--navy);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.support-main,
.support-aside {
  min-width: 0;
}

.support-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.programme-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.045);
}

.programme-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.programme-matrix th,
.programme-matrix td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px;
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.38;
}

.programme-matrix thead th {
  background: #f4eadb;
  color: var(--navy);
  font-weight: 850;
}

.programme-matrix tbody th {
  width: 190px;
  color: var(--navy);
  font-weight: 850;
  background: #fbf8f2;
}

.programme-matrix td {
  color: var(--muted);
}

.ou-course-directory {
  display: grid;
  gap: 18px;
}

.ou-catalogue-tools {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.045);
  display: grid;
  gap: 12px;
}

.ou-catalogue-tools > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.ou-catalogue-tools strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.ou-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ou-filter-row button {
  appearance: none;
  border: 1px solid var(--line);
  background: #fbf8f2;
  color: var(--navy);
  border-radius: 7px;
  padding: 7px 10px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ou-filter-row button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.ou-subject-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.045);
  overflow: hidden;
}

.ou-subject-head {
  padding: 15px 17px;
  background: #f4eadb;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ou-subject-head h3 {
  color: var(--navy);
  font-size: 20px;
}

.ou-subject-head span {
  color: #6c5527;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.ou-course-list {
  display: grid;
}

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

.ou-course-card:last-child {
  border-bottom: 0;
}

.ou-course-card summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
}

.ou-course-card summary::-webkit-details-marker {
  display: none;
}

.ou-course-card summary b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.ou-course-card summary em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
}

.ou-course-card summary em i {
  color: #6c5527;
  border: 1px solid #eadfce;
  border-radius: 999px;
  background: #fbf8f2;
  padding: 2px 7px;
  margin-right: 6px;
  font-style: normal;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ou-course-card summary strong {
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbf8f2;
  padding: 7px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ou-course-panel {
  border-top: 1px solid #efe5d7;
  padding: 15px 17px 17px;
  background: #fffdf9;
}

.ou-course-panel dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.ou-course-panel dl div {
  border: 1px solid #eadfce;
  border-radius: 7px;
  padding: 9px 10px;
  background: #fff;
}

.ou-course-panel dt {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ou-course-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.ou-course-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
  margin: 8px 0 0;
}

.support-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.045);
}

.support-table article {
  min-height: 206px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.support-table strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.18;
}

.support-table span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.22;
}

.support-table p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
  margin: 0;
}

.support-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.support-table a {
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  background: #fbf8f2;
}

.support-card-actions a {
  margin-top: 0;
}

.support-card-actions a:first-child {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.support-table-detail article {
  min-height: 224px;
}

.pathway-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pathway-strip a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  padding: 9px 11px;
  box-shadow: 0 6px 16px rgba(6, 26, 47, 0.035);
}

.translate-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.04);
}

.translate-entry button {
  appearance: none;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  border-radius: 7px;
  padding: 8px 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.translate-entry span {
  color: var(--muted);
  font-size: 12px;
}

.support-aside {
  display: grid;
  gap: 12px;
}

.support-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.04);
}

.support-note h3 {
  color: var(--navy);
  font-size: 18px;
}

.support-note p,
.support-note li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.support-note p {
  margin: 8px 0 0;
}

.support-note ol {
  margin: 10px 0 0;
  padding-left: 18px;
}

.support-note.boundary {
  border-left: 4px solid var(--gold);
}

.support-note.contact .btn {
  margin-top: 12px;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 12px;
}

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

.subject-grid article {
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  min-height: 142px;
}

.subject-grid strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.18;
}

.subject-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 9px;
}

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

.doctoral-highlight {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.045);
}

.doctoral-highlight h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.doctoral-highlight p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
  margin: 8px 0 0;
}

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

.doctoral-actions a {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 11px;
}

.doctoral-actions a:last-child {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.academic-area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.045);
}

.area-card-head {
  padding-bottom: 12px;
  border-bottom: 1px solid #eadfce;
}

.area-card-head strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.14;
}

.area-card-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin-top: 6px;
}

.level-block {
  margin-top: 12px;
}

.level-block b {
  color: var(--gold);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.level-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.level-block li {
  color: var(--ink);
  font-size: 11.5px;
  line-height: 1.32;
  padding: 0;
  border-bottom: 1px solid #f0e8dc;
}

.level-block li:last-child {
  border-bottom: 0;
}

.qualification-detail summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  padding: 6px 0;
}

.qualification-detail summary::-webkit-details-marker {
  display: none;
}

.qualification-detail summary span {
  position: relative;
  padding-left: 14px;
}

.qualification-detail summary span::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.qualification-detail[open] summary span::before {
  content: "-";
}

.qualification-detail em {
  font-style: normal;
  white-space: nowrap;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
}

.qualification-panel {
  background: #fbf8f2;
  border: 1px solid #eadfce;
  border-radius: 7px;
  margin: 0 0 8px 14px;
  padding: 10px;
}

.qualification-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
}

.qualification-panel dl div {
  min-width: 0;
}

.qualification-panel .progression-row {
  grid-column: 1 / -1;
}

.qualification-panel dt {
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qualification-panel dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
}

.qualification-panel p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.42;
  margin: 10px 0 0;
}

.qualification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.qualification-actions a {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 9px;
}

.qualification-actions a:last-child {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.status-approved {
  color: #174c3f;
  background: #e5f2ed;
  border: 1px solid #beddd1;
}

.status-tbc {
  color: #6a552c;
  background: #fbf2de;
  border: 1px solid #e8d4a5;
}

.tool-category-grid,
.app-directory-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tool-category-grid article,
.app-directory-grid article,
.metrics-grid article,
.pipeline-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.045);
}

.tool-category-grid b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fbf2de;
  color: #8a6321;
  font-size: 12px;
  margin-bottom: 12px;
}

.app-directory-grid b {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fbf2de;
  color: #8a6321;
  font-size: 11px;
  margin-bottom: 12px;
}

.tool-category-grid strong,
.app-directory-grid strong,
.metrics-grid strong,
.pipeline-list strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
}

.tool-category-grid span,
.app-directory-grid p,
.metrics-grid p,
.pipeline-list p {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 9px 0 0;
}

.app-directory-grid ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #eadfce;
}

.app-directory-grid li {
  color: #43516b;
  font-size: 12.5px;
  line-height: 1.35;
}

.app-directory-grid li span {
  display: inline-block;
  min-width: 52px;
  margin-right: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-directory-grid a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.metrics-grid span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.pipeline-list {
  display: grid;
  gap: 10px;
}

.pipeline-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.pipeline-list article span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pipeline-list p {
  margin: 0;
}

.consulting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.consulting-stat-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.055);
}

.consulting-stat-panel div {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 14px;
}

.consulting-stat-panel b {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.consulting-stat-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 5px;
}

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

.consulting-grid article,
.consulting-levels article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.045);
}

.consulting-grid b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.consulting-grid strong,
.consulting-levels strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
}

.consulting-grid span,
.consulting-levels p,
.consulting-levels span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 9px;
}

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

.consulting-levels span {
  color: #6d5528;
  font-size: 12px;
  padding-top: 9px;
  border-top: 1px solid #eadfce;
}

.chat-app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.055);
  overflow: hidden;
}

.chat-window {
  height: 520px;
  overflow: auto;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fbf8f2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 82%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.48;
}

.chat-message strong {
  color: var(--navy);
}

.chat-message p {
  margin: 6px 0 0;
}

.chat-message .zh {
  color: #596577;
}

.chat-message.bot {
  align-self: flex-start;
  background: #fff;
}

.chat-message.user {
  align-self: flex-end;
  background: #0b2440;
  color: #fff;
  border-color: #0b2440;
}

.chat-message.user p {
  margin: 0;
}

.chat-message a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.quick-prompts button {
  border: 1px solid var(--line);
  background: #fbf8f2;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-form textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}

.search-app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.055);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  font-size: 18px;
  color: var(--ink);
  background: #fbf8f2;
}

.search-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.search-result span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.search-result strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
}

.search-result p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.source-note {
  color: #746955;
  font-size: 12px;
  line-height: 1.45;
  margin: 16px 0 0;
}

.feature,
.product,
.app-card,
.resource-row,
.about-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.055);
}

.feature {
  padding: 24px;
}

.feature .num {
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature h3 {
  color: var(--navy);
  font-size: 22px;
  margin-top: 16px;
}

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

.office-notice {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(6, 26, 47, 0.055);
}

.office-notice h2 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 6px 0 0;
}

.office-notice p {
  color: #4d5968;
  margin: 10px 0 0;
}

.office-notice-details {
  background: #faf7f1;
  border: 1px solid rgba(222, 211, 196, 0.85);
  border-radius: 7px;
  padding: 16px;
}

.office-notice-details a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 59, 0.55);
  text-underline-offset: 3px;
}

.spotlight {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.app-screen {
  min-height: 440px;
  border-radius: 7px;
  background: linear-gradient(150deg, #0a213c, #10395d);
  color: #fff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.app-screen::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(228, 193, 109, 0.35);
  transform: rotate(9deg);
}

.screen-stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.screen-stat div {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 16px;
}

.screen-stat b {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.screen-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.screen-title {
  position: relative;
  z-index: 1;
}

.screen-title h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 40px;
}

.screen-title p {
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 0;
}

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

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

.publishing-overview {
  padding-top: 66px;
}

.publishing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: 20px;
  align-items: start;
}

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

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

.publishing-categories a {
  min-height: 142px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(6, 26, 47, 0.045);
}

.publishing-categories b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.publishing-categories strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
}

.publishing-categories span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

.series-shelf {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(6, 26, 47, 0.055);
}

.shelf-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.shelf-head h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 28px;
}

.shelf-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.shelf-head a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

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

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

.shelf-book {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  min-height: 88px;
  border: 1px solid #e8ded0;
  border-radius: 7px;
  padding: 8px;
  background: #fbf8f2;
}

.shelf-cover {
  background: linear-gradient(145deg, var(--navy), #123250);
  color: #fff;
  border-radius: 4px;
  padding: 7px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.shelf-cover span,
.shelf-cover em {
  color: var(--gold-2);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelf-cover strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 11px;
  line-height: 1.04;
}

.shelf-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shelf-text b {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.shelf-text strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.14;
  margin-top: 3px;
}

.shelf-text small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  margin-top: 7px;
}

.product {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cover {
  aspect-ratio: 1 / 1.32;
  background: linear-gradient(145deg, var(--navy), #123250);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 340px;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 12% -20% auto auto;
  width: 48%;
  height: 76%;
  border: 1px solid rgba(228, 193, 109, 0.32);
  transform: rotate(7deg);
}

.cover small {
  color: var(--gold-2);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.cover-unit {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 750;
  margin-top: 8px;
}

.cover strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 250px;
  position: relative;
  z-index: 1;
}

.cover-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 250px;
}

.cover-bottom span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  color: var(--navy);
  font-size: 19px;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}

.isbn-line {
  margin-top: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.meta {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.about-panel {
  padding: 24px;
}

.about-panel h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.about-panel p,
.about-panel li {
  color: var(--muted);
}

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

.resource-row {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.resource-row h3 {
  color: var(--navy);
  font-size: 18px;
}

.resource-row p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 14px;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), #0c2d50);
  color: #fff;
}

.page-hero .band {
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.notice {
  background: #fbf2de;
  border: 1px solid #e4d1a3;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 18px;
  color: #654d1e;
  font-size: 14px;
}

.advice-signpost {
  color: #51401d;
}

.advice-signpost p {
  margin: 8px 0 0;
}

.advice-signpost .actions {
  margin-top: 12px;
}

.site-footer {
  background: #06172b;
  color: rgba(255, 255, 255, 0.72);
  padding: 38px 0 24px;
  border-top: 1px solid rgba(208, 174, 103, 0.32);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1.05fr;
  gap: 20px;
}

.footer-inner strong {
  color: #fff;
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 10px;
}

.footer-col {
  border-left: 1px solid rgba(208, 174, 103, 0.24);
  padding-left: 14px;
}

.footer-col p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 350;
  line-height: 1.48;
}

.footer-about p:first-of-type {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-legal {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10.5px;
  font-weight: 350;
  line-height: 1.45;
}

.footer-legal span:last-child {
  text-align: center;
}

.embedded-app-frame {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  height: min(900px, 86vh);
  min-height: 680px;
  overflow: hidden;
}

.embedded-app-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #faf7f2;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-inner,
  .app-spotlight,
  .two-col,
  .publishing-layout,
  .consulting-hero {
    grid-template-columns: 1fr;
  }

  .hero-directory,
  .index-grid,
  .publishing-categories,
  .publishing-categories-wide {
    grid-template-columns: 1fr;
  }

  .index-grid article,
  .index-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .index-grid article:last-child {
    border-bottom: 0;
  }

  .hero-inner {
    min-height: auto;
  }

  .feature-grid,
  .product-grid,
  .app-summary-strip,
  .app-directory-grid,
  .course-system-grid,
  .external-route-grid,
  .support-mini-grid,
  .support-layout,
  .support-table,
  .subject-grid,
  .academic-area-grid,
  .tool-category-grid,
  .metrics-grid,
  .consulting-grid,
  .consulting-levels,
  .office-notice {
    grid-template-columns: 1fr;
  }

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

  .course-system-grid article,
  .app-summary-strip article,
  .course-system-grid article:last-child,
  .app-summary-strip article:last-child,
  .external-route-card,
  .external-route-card:last-child,
  .course-system-entry,
  .course-system-entry:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .course-system-grid article:last-child,
  .app-summary-strip article:last-child,
  .external-route-card:last-child,
  .course-system-entry:last-child {
    border-bottom: 0;
  }

  .product-grid.two-up {
    grid-template-columns: 1fr;
  }

  .shelf-grid,
  .shelf-grid-wide {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .band {
    padding: 58px 0;
  }

  .nav-links a {
    font-size: 13px;
    padding: 8px 9px;
  }

  .hero-actions,
  .actions,
  .resource-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .chat-window {
    height: 460px;
  }

  .chat-message {
    max-width: 100%;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .ou-course-panel dl {
    grid-template-columns: 1fr;
  }

  .doctoral-highlight {
    grid-template-columns: 1fr;
  }

  .doctoral-actions {
    justify-content: flex-start;
  }

  .qualification-panel dl {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
  }

  .footer-legal span:last-child {
    text-align: center;
  }

  .embedded-app-frame {
    height: 760px;
    min-height: 640px;
  }
}
