/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1F1E1D;
  background-color: #F7F5F0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #205081;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.35;
  margin: 0 0 0.5em;
  color: #1F1E1D;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd {
  margin: 0;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background-color: #F7F5F0;
  border-bottom: 1px solid #E4E1DA;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F1E1D;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #6B6A68;
}

.site-nav .nav-list {
  display: flex;
  gap: 4px;
}

.site-nav .nav-link {
  display: inline-block;
  padding: 8px 12px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  color: #1F1E1D;
  border-bottom: 2px solid transparent;
}

.site-nav .nav-link:hover {
  text-decoration: none;
  border-bottom-color: #205081;
}

.site-nav .nav-link.is-current {
  color: #205081;
  border-bottom-color: #205081;
  font-weight: 600;
}

.lang-switch {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  color: #6B6A68;
  padding: 4px 8px;
  border: 1px solid #E4E1DA;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 1px solid #E4E1DA;
  border-radius: 4px;
  cursor: pointer;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1F1E1D;
}

.site-main {
  flex: 1;
  width: 100%;
}

/* Breadcrumb */

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.8125rem;
  color: #6B6A68;
}

.breadcrumb a {
  color: #6B6A68;
}

.breadcrumb a:hover {
  color: #205081;
}

.breadcrumb-sep {
  margin: 0 8px;
  color: #E4E1DA;
}

.breadcrumb-current {
  color: #1F1E1D;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #6B6A68;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list a {
  color: #6B6A68;
}

.breadcrumb-list a:hover {
  color: #205081;
}

.breadcrumb-nav {
  border-bottom: 1px solid #E4E1DA;
}

/* Page layout */

.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.page-layout .inner-main {
  min-width: 0;
}

.page-layout .page-aside {
  min-width: 0;
}

.page-layout .sidebar {
  min-width: 0;
}

.layout-shell.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.layout-shell .inner-main {
  min-width: 0;
}

.layout-shell .page-aside {
  min-width: 0;
}

/* Page header */

.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.page-header .page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}

.page-title-area,
.page-title-block,
.page-title-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

.page-title-inner {
  max-width: 720px;
}

.page-title-desc,
.page-intro,
.page-subtitle,
.page-heading-desc {
  font-size: 1rem;
  color: #6B6A68;
  margin: 0;
}

/* Section blocks */

.section-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-intro {
  margin-bottom: 32px;
}

.section-intro h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.section-intro p {
  color: #6B6A68;
  max-width: 720px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading .section-kicker {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  color: #205081;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.section-desc {
  color: #6B6A68;
  margin-bottom: 24px;
}

/* Related links */

.related-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.related-links-label {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  color: #6B6A68;
  margin-right: 8px;
}

.related-links-item {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  padding: 6px 12px;
  border: 1px solid #E4E1DA;
  border-radius: 4px;
  color: #205081;
  background-color: #fff;
}

.related-links-item:hover {
  border-color: #205081;
  text-decoration: none;
}

/* Footer */

.site-footer {
  background-color: #1F1E1D;
  color: #E4E1DA;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-col-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #E4E1DA;
  line-height: 1.7;
}

.footer-inner a {
  color: #E4E1DA;
  font-size: 0.875rem;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-inner li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #3a3937;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
  color: #E4E1DA;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a9e6b;
}

.footer-updated {
  margin: 0;
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #205081;
  color: #fff;
  border: 1px solid #205081;
}

.btn-primary:hover {
  background-color: #1a4066;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #205081;
  border: 1px solid #205081;
}

.btn-secondary:hover {
  background-color: #205081;
  color: #fff;
  text-decoration: none;
}

/* Status tags */

.status-tag {
  display: inline-block;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 3px;
  background-color: #E4E1DA;
  color: #6B6A68;
}

.status-updated {
  background-color: #e8f0f7;
  color: #205081;
}

.status-ongoing {
  background-color: #f0e8e0;
  color: #8a5a2a;
}

/* Text link */

.text-link {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #205081;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: #205081;
  text-decoration: none;
}

/* Footnote */

.footnote {
  font-size: 0.8125rem;
  color: #6B6A68;
  border-top: 1px solid #E4E1DA;
  padding-top: 8px;
  margin-top: 24px;
}

/* ==========================================================================
   Pages
   ========================================================================== */

/* ---------- Home ---------- */

.home-main .hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  color: #205081;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 1.125rem;
  color: #1F1E1D;
  margin-bottom: 12px;
}

.hero-sub {
  color: #6B6A68;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-figure {
  border-radius: 8px;
  overflow: hidden;
}

.hero-figure img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.core-capability {
  border-top: 1px solid #E4E1DA;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.capability-card .card-figure {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.capability-card .card-figure img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.capability-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 0.875rem;
  color: #6B6A68;
  flex: 1;
  margin-bottom: 16px;
}

.method-results {
  border-top: 1px solid #E4E1DA;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.method-summary,
.results-summary {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  overflow: hidden;
}

.method-summary .summary-figure,
.results-summary .summary-figure {
  overflow: hidden;
}

.method-summary .summary-figure img,
.results-summary .summary-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.summary-text {
  padding: 24px;
}

.summary-text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.summary-text p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 12px;
}

.announcements {
  border-top: 1px solid #E4E1DA;
}

.announcement-list {
  max-width: 800px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E4E1DA;
}

.announcement-item:last-child {
  border-bottom: none;
}

.announcement-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
  color: #1F1E1D;
}

.announcement-link:hover {
  color: #205081;
  text-decoration: none;
}

.announcement-link time {
  font-size: 0.8125rem;
  color: #6B6A68;
  white-space: nowrap;
}

.entries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.entry-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #1F1E1D;
}

.entry-card:hover {
  border-color: #205081;
  text-decoration: none;
}

.entry-card .entry-figure {
  overflow: hidden;
}

.entry-card .entry-figure img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.entry-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 16px 16px 0;
  margin-bottom: 8px;
}

.entry-card p {
  font-size: 0.875rem;
  color: #6B6A68;
  padding: 0 16px;
  flex: 1;
  margin-bottom: 16px;
}

.entry-more {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #205081;
  padding: 0 16px 16px;
}

/* ---------- Start ---------- */

.brand-story .story-figure {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.brand-story .story-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.brand-story .story-figure figcaption {
  font-size: 0.8125rem;
  color: #6B6A68;
  padding: 8px 0;
  border-bottom: 1px solid #E4E1DA;
}

.story-content p {
  margin-bottom: 1em;
}

.concept-path .section-intro {
  color: #6B6A68;
}

.path-steps {
  counter-reset: path-step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.path-step {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.path-step .step-number {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #205081;
  line-height: 1;
  flex-shrink: 0;
}

.path-step .step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.path-step .step-body p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

.belief-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.belief-item {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
}

.belief-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.belief-item p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* Aside */

.aside-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.aside-card .aside-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E1DA;
}

.aside-links li {
  margin-bottom: 8px;
}

.aside-links a {
  font-size: 0.875rem;
  color: #205081;
}

.aside-links a:hover {
  text-decoration: underline;
}

.aside-text {
  font-size: 0.875rem;
  color: #6B6A68;
}

/* ---------- Capacity ---------- */

.service-matrix {
  margin-bottom: 48px;
}

.service-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-index {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #205081;
  background-color: #e8f0f7;
  border-radius: 3px;
  padding: 2px 8px;
}

.service-card-head h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.service-desc {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 16px;
}

.service-output {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  background-color: #F7F5F0;
  border-radius: 4px;
  padding: 12px 16px;
}

.service-output dt {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: #1F1E1D;
  flex-shrink: 0;
}

.service-output dd {
  color: #6B6A68;
}

.capability-image {
  margin-bottom: 48px;
}

.capability-figure {
  border-radius: 8px;
  overflow: hidden;
}

.capability-figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.capability-figure figcaption {
  font-size: 0.8125rem;
  color: #6B6A68;
  padding: 8px 0;
  border-bottom: 1px solid #E4E1DA;
}

.compare-intro {
  color: #6B6A68;
  margin-bottom: 16px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  font-size: 0.875rem;
  border: 1px solid #E4E1DA;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E4E1DA;
  vertical-align: top;
}

.compare-table th {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  background-color: #fff;
  white-space: nowrap;
}

.compare-table td {
  background-color: #fff;
  color: #6B6A68;
}

/* Sidebar */

.sidebar-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E1DA;
}

.sidebar-links li {
  margin-bottom: 8px;
}

.sidebar-links a {
  font-size: 0.875rem;
  color: #205081;
}

.sidebar-links a:hover {
  text-decoration: underline;
}

.sidebar-note {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
}

.sidebar-note-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.sidebar-note p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* ---------- Method ---------- */

.method-overview {
  margin-bottom: 48px;
}

.method-overview h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.method-overview > p {
  color: #6B6A68;
  margin-bottom: 24px;
}

.method-figure {
  border-radius: 8px;
  overflow: hidden;
}

.method-figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.method-figure figcaption {
  font-size: 0.8125rem;
  color: #6B6A68;
  padding: 8px 0;
  border-bottom: 1px solid #E4E1DA;
}

.method-steps {
  margin-bottom: 48px;
}

.method-steps > h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.method-step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #E4E1DA;
}

.method-step-item:last-child {
  border-bottom: none;
}

.method-step-item .step-number {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #205081;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.method-step-item .step-content {
  flex: 1;
  min-width: 0;
}

.method-step-item .step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.method-step-item .step-content > p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 16px;
}

.step-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  font-size: 0.875rem;
}

.step-detail dt {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: #1F1E1D;
}

.step-detail dd {
  color: #6B6A68;
  margin-bottom: 8px;
}

/* Aside blocks */

.aside-block {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.aside-block h2 {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E1DA;
}

.aside-block p {
  font-size: 0.875rem;
  color: #6B6A68;
}

.aside-points {
  list-style: disc;
  padding-left: 20px;
}

.aside-points li {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 8px;
}

.aside-link-list li {
  margin-bottom: 8px;
}

.aside-link-list a {
  font-size: 0.875rem;
  color: #205081;
}

/* ---------- Results ---------- */

.result-types {
  margin-bottom: 48px;
}

.result-card {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.result-card-media .result-figure {
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.result-card-media .result-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card-body {
  padding: 24px;
}

.result-card-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.result-card-body > p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 16px;
}

.deliverable-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.deliverable-list dt {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: #1F1E1D;
}

.deliverable-list dd {
  color: #6B6A68;
  margin-bottom: 8px;
}

.result-standard {
  font-size: 0.8125rem;
  color: #6B6A68;
  background-color: #F7F5F0;
  border-radius: 4px;
  padding: 12px 16px;
  margin: 0;
}

.result-standard strong {
  color: #1F1E1D;
}

.delivery-note {
  margin-bottom: 48px;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.standard-list li {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 20px;
}

.standard-list h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.standard-list p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* ---------- Insights ---------- */

.article-list {
  margin-bottom: 48px;
}

.article-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.article-media {
  border-radius: 6px;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.article-body {
  min-width: 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.article-meta time {
  font-size: 0.8125rem;
  color: #6B6A68;
}

.article-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.article-title a {
  color: #1F1E1D;
}

.article-title a:hover {
  color: #205081;
}

.article-summary {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* Sidebar */

.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-block {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 24px;
}

.sidebar-block .sidebar-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E1DA;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-tags a {
  display: inline-block;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  padding: 4px 12px;
  border: 1px solid #E4E1DA;
  border-radius: 3px;
  color: #6B6A68;
  background-color: #F7F5F0;
}

.topic-tags a:hover {
  border-color: #205081;
  color: #205081;
  text-decoration: none;
}

/* ---------- FAQ ---------- */

.faq-section {
  margin-bottom: 48px;
}

.faq-group {
  margin-bottom: 32px;
}

.faq-group-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E1DA;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 6px;
  margin-bottom: 12px;
}

.faq-question {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1F1E1D;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: #205081;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 16px;
  border-top: 1px solid #E4E1DA;
}

.faq-answer p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 12px 0 0;
  padding-top: 12px;
}

.faq-image-section {
  margin-bottom: 48px;
}

.faq-figure {
  border-radius: 8px;
  overflow: hidden;
}

.faq-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.faq-figure figcaption {
  font-size: 0.8125rem;
  color: #6B6A68;
  padding: 8px 0;
  border-bottom: 1px solid #E4E1DA;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice-label {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #205081;
  background-color: #e8f0f7;
  border-radius: 3px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.notice-item p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* ---------- Contact ---------- */

.process-section {
  margin-bottom: 48px;
}

.process-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-section .section-desc {
  color: #6B6A68;
  margin-bottom: 24px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  gap: 16px;
  background-color: #fff;
  border: 1px solid #E4E1DA;
  border-radius: 8px;
  padding: 20px;
  align-items: flex-start;
}

.process-step .step-num {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #205081;
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.process-step .step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step .step-body p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin-bottom: 8px;
}

.process-step .step-body .step-output {
  font-size: 0.8125rem;
  color: #6B6A68;
  background-color: #F7F5F0;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 0;
}

.process-figure {
  border-radius: 8px;
  overflow: hidden;
}

.process-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.process-figure figcaption {
  font-size: 0.8125rem;
  color: #6B6A68;
  padding: 8px 0;
  border-bottom: 1px solid #E4E1DA;
}

.contact-note-section {
  margin-bottom: 48px;
}

.contact-note-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-note-section p {
  font-size: 0.875rem;
  color: #6B6A68;
}

/* Prep list */

.prep-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prep-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.prep-status {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #205081;
  background-color: #e8f0f7;
  border-radius: 3px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.prep-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.prep-content p {
  font-size: 0.875rem;
  color: #6B6A68;
  margin: 0;
}

/* ---------- 404 ---------- */

.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.error-section {
  text-align: center;
  max-width: 480px;
}

.error-code {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #205081;
  margin-bottom: 8px;
}

.error-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.error-desc {
  color: #6B6A68;
  margin-bottom: 24px;
}

.error-link {
  display: inline-block;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  background-color: #205081;
  color: #fff;
  border-radius: 4px;
}

.error-link:hover {
  background-color: #1a4066;
  text-decoration: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .page-layout,
  .layout-shell.page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-layout .page-aside,
  .page-layout .sidebar,
  .layout-shell .page-aside {
    order: 2;
  }

  .capability-grid,
  .entries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-card-media .result-figure {
    min-height: 0;
  }

  .result-card-media .result-figure img {
    height: 220px;
  }

  .standard-list {
    grid-template-columns: 1fr;
  }

  .path-steps,
  .belief-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    background-color: #F7F5F0;
    border-top: 1px solid #E4E1DA;
    padding: 8px 0;
  }

  .site-nav .nav-list.is-open {
    display: flex;
  }

  .site-nav .nav-link {
    display: block;
    padding: 12px 16px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .site-nav .nav-link.is-current {
    border-left-color: #205081;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-switch {
    margin-left: auto;
  }

  .page-layout,
  .layout-shell.page-layout {
    padding: 16px;
    gap: 24px;
  }

  .breadcrumb,
  .breadcrumb-inner {
    padding: 12px 16px 0;
  }

  .page-header {
    padding: 16px 16px 0;
  }

  .page-title-area,
  .page-title-block,
  .page-title-wrap {
    padding: 0 16px 16px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px 32px;
  }

  .hero-figure img {
    height: 240px;
  }

  .capability-grid,
  .entries-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 32px 16px;
  }

  .article-item {
    grid-template-columns: 1fr;
  }

  .article-media img {
    height: 180px;
  }

  .path-steps,
  .belief-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  .related-links {
    padding: 16px;
    gap: 8px;
  }

  .related-links-item {
    padding: 10px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .method-step-item {
    gap: 12px;
  }

  .method-step-item .step-number {
    font-size: 1.25rem;
    min-width: 36px;
  }

  .result-card-body {
    padding: 16px;
  }

  .standard-list li {
    padding: 16px;
  }

  .service-card {
    padding: 16px;
  }

  .service-card-head {
    flex-wrap: wrap;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
  }

  .process-step {
    padding: 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px 14px;
  }

  .aside-card,
  .sidebar-card,
  .sidebar-block,
  .aside-block {
    padding: 16px;
  }

  .story-figure img {
    height: 220px;
  }

  .capability-figure img,
  .method-figure img,
  .faq-figure img,
  .process-figure img {
    height: 200px;
  }

  .error-main {
    padding: 48px 16px;
  }
}

@media (max-width: 480px) {
  .hero-figure img {
    height: 200px;
  }

  .article-media img {
    height: 160px;
  }

  .result-card-media .result-figure img {
    height: 180px;
  }

  .capability-figure img,
  .method-figure img,
  .faq-figure img,
  .process-figure img {
    height: 180px;
  }

  .story-figure img {
    height: 200px;
  }
}
