:root {
  --bg: #f3f5ee;
  --surface: #ffffff;
  --surface-soft: #f8faf4;
  --line: #d9e2d0;
  --line-strong: #c1cfb4;
  --ink: #213126;
  --muted: #687462;
  --blue-900: #28492d;
  --blue-800: #3d6435;
  --blue-700: #d97a1f;
  --blue-600: #e89234;
  --gold: #ee9d35;
  --danger: #b54444;
  --success: #1f7a56;
  --warning: #946920;
  --shadow-lg: 0 24px 60px rgba(40, 73, 45, 0.12);
  --shadow-md: 0 18px 36px rgba(40, 73, 45, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --heading-font: "Source Han Serif SC", "Noto Serif SC", "STSong", "SimSun", serif;
  --body-font: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(232, 146, 52, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf5 0%, var(--bg) 40%, #eef3e7 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.site-topbar .shell,
.site-header .shell {
  width: min(1280px, calc(100% - 24px));
}

.site-topbar {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-topbar-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(183, 199, 216, 0.5);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex-shrink: 0;
  padding-right: 16px;
}

.brand img {
  width: 320px;
  max-width: 42vw;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.site-nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

html[lang="en"] .site-nav {
  gap: 2px;
}

html[lang="en"] .site-nav a {
  padding: 10px 9px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

html[lang="en"] .brand img {
  max-width: 34vw;
}

html[lang="en"] .header-inner {
  gap: 24px;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(22, 57, 95, 0.08);
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  min-width: 68px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.header-actions .btn {
  font-size: 16px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--blue-900);
  padding: 10px 14px;
  border-radius: 999px;
}

.site-main {
  min-height: calc(100vh - 240px);
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.section-kicker.dark {
  color: var(--blue-700);
}

.section-head h2,
.detail-article h2,
.contact-form-card h2,
.support-form-card h2,
.support-query-card h2,
.showcase-copy h2,
.overview-panel h2,
.news-feature-copy h2,
.job-list-card h2,
.product-card-body h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  color: var(--blue-900);
}

.home-hero-shell {
  width: 100%;
  max-width: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 46px 0 46px 18px;
  animation: fadeUp 0.8s ease both;
}

.hero-copy::before {
  content: "";
  width: 84px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(61, 100, 53, 0.92));
}

.hero-copy .section-kicker {
  margin-bottom: 16px;
  color: var(--blue-700);
}

.hero-copy h1,
.detail-hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.02;
  color: var(--blue-900);
  max-width: 6.5em;
  text-wrap: balance;
}

.hero-lead,
.hero-text,
.detail-hero-copy p,
.page-hero-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.hero-lead {
  max-width: 18em;
  margin: 24px 0 0;
  font-size: 20px;
  color: rgba(33, 49, 38, 0.74);
}

.hero-actions,
.admin-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-copy .hero-actions {
  margin-top: 34px;
  gap: 16px;
}

.hero-copy .btn {
  min-width: 148px;
  min-height: 50px;
}

.hero-banner-card {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 0;
  background: #dfe7d6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow-lg);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 32, 18, 0.38) 0%, rgba(15, 32, 18, 0.24) 32%, rgba(15, 32, 18, 0.28) 100%),
    radial-gradient(circle at center, rgba(15, 32, 18, 0.08) 0%, rgba(15, 32, 18, 0.3) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  padding: 64px clamp(28px, 5vw, 72px);
  text-align: center;
}

.hero-copy.is-overlay {
  align-items: center;
  width: min(1080px, 100%);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.hero-copy.is-overlay::before {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, #f6b45c, rgba(116, 181, 80, 0.94));
}

.hero-copy.is-overlay .section-kicker {
  color: #ffffff;
  font-weight: 900;
  font-size: medium;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),   /* 上方高光 */
    0 2px 0 rgba(255,170,50,0.6),    /* 中间层 */
    0 3px 2px rgba(255,120,0,0.35);  /* 底部轻阴影 */
}

.hero-brand-kicker {
  white-space: nowrap;
}

.hero-brand-kicker-zh {
  display: none;
  font-size: 1.22em;
}

.hero-brand-kicker-en {
  display: inline;
}

html[lang="en"] .hero-brand-kicker-zh {
  display: inline;
}

html[lang="en"] .hero-brand-kicker-en {
  display: none;
}

.hero-copy.is-overlay h1 {
  color: #ffffff;
  max-width: none;
  font-weight: 900;
  margin-left: auto;
  margin-right: auto;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.6),
    0 2px 0 rgba(255,170,50,0.7),
    0 4px 4px rgba(255,120,0,0.35);
}

.hero-brand-title {
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-copy.is-overlay .hero-lead {
  max-width: 24em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  color: #ff6600;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.4),
    0 2px 2px rgba(255,120,0,0.3);
}

.hero-copy.is-overlay .hero-actions {
  justify-content: center;
}

.hero-copy.is-overlay .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.hero-copy.is-overlay .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.overview-facts div,
.detail-facts div,
.contact-facts div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(183, 199, 216, 0.6);
  box-shadow: var(--shadow-md);
}

.overview-facts span,
.detail-facts span,
.contact-facts span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.overview-facts strong,
.detail-facts strong,
.contact-facts strong {
  color: var(--blue-900);
  font-size: 16px;
  line-height: 1.7;
}

.wide-image-card,
.qualification-banner,
.feature-banner,
.showcase-panel,
.detail-article,
.detail-side-card,
.contact-info-card,
.contact-form-card,
.support-form-card,
.support-query-card,
.overview-panel,
.news-feature-card,
.admin-panel,
.card,
.plain-card,
.surface-card,
.login-card {
  background: var(--surface);
  border: 1px solid rgba(183, 199, 216, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-media-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  min-height: 700px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  animation: fadeUp 0.9s ease both;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 14% 6% 12% 20%;
  z-index: 0;
  background:
    radial-gradient(circle at 64% 50%, rgba(232, 146, 52, 0.16) 0%, rgba(61, 100, 53, 0.1) 34%, rgba(61, 100, 53, 0) 76%);
  filter: blur(34px);
  transform: scale(1.02);
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 245, 238, 0.98) 0%, rgba(243, 245, 238, 0.86) 8%, rgba(243, 245, 238, 0.26) 20%, rgba(243, 245, 238, 0) 34%, rgba(243, 245, 238, 0) 82%, rgba(243, 245, 238, 0.24) 92%, rgba(243, 245, 238, 0.72) 97%, rgba(243, 245, 238, 0.94) 100%),
    linear-gradient(180deg, rgba(243, 245, 238, 0.88) 0%, rgba(243, 245, 238, 0.34) 14%, rgba(243, 245, 238, 0) 30%, rgba(243, 245, 238, 0) 76%, rgba(243, 245, 238, 0.22) 88%, rgba(243, 245, 238, 0.72) 100%);
}

.hero-media-card img,
.wide-image-card img,
.qualification-banner img,
.showcase-panel img,
.detail-hero-media img,
.detail-hero-media video {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
}

.hero-media-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  height: auto;
  min-height: 0;
  max-height: 720px;
  margin-left: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: right center;
  transform: translateX(1.5%);
  filter: drop-shadow(0 20px 34px rgba(40, 73, 45, 0.1));
}

.company-overview,
.about-layout,
.contact-page-grid,
.support-page-grid,
.detail-page-grid,
.news-page-grid {
  display: grid;
  gap: 28px;
}

.company-overview {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

.about-layout,
.contact-page-grid,
.support-page-grid,
.detail-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.overview-panel,
.detail-article,
.detail-side-card,
.contact-info-card,
.contact-form-card,
.support-form-card,
.support-query-card,
.news-feature-copy {
  padding: 34px;
}

.overview-panel p,
.showcase-copy p,
.news-feature-copy p,
.faq-card p,
.timeline-card p,
.product-card-body p,
.news-list-card p,
.job-list-card p,
.ticket-result p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.overview-intro {
  margin-bottom: 14px !important;
  color: var(--blue-900) !important;
  font-size: 18px !important;
}

.overview-panel p + p {
  margin-top: 14px;
}

.about-copy-card {
  align-self: center;
  padding: 8px 0 8px 8px;
}

.about-copy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.about-copy-card p + p {
  margin-top: 14px;
}

.about-highlight-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-highlight-card {
  min-height: 100%;
  padding: 26px 24px;
  border: 1px solid rgba(183, 199, 216, 0.5);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 243, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.about-highlight-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.about-highlight-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-highlight-card p,
.section-summary {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

.overview-gallery,
.about-media-stack {
  display: grid;
  gap: 16px;
}

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

.overview-image,
.about-media-stack img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  min-height: 200px;
}

.overview-image.is-large {
  grid-row: span 2;
}

.overview-image img,
.about-media-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-grid,
.product-grid,
.timeline-grid,
.certificate-grid,
.faq-grid,
.admin-kpi-grid,
.admin-media-grid,
.cta-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.certificate-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

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

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

.business-card,
.product-card,
.cta-card,
.news-strip-card,
.news-list-card,
.job-list-card,
.timeline-card,
.faq-card,
.certificate-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 199, 216, 0.5);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.business-card:hover,
.product-card:hover,
.cta-card:hover,
.news-list-card:hover,
.job-list-card:hover,
.news-strip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(40, 73, 45, 0.14);
}

.business-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.business-card-copy,
.product-card-body,
.cta-card-copy {
  padding: 22px;
}

.business-card-copy span,
.product-card-body span,
.cta-card-copy span,
.news-feature-copy span,
.news-list-card span,
.job-list-card span,
.timeline-card span,
.ticket-result strong,
.admin-kpi-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-card-copy h3,
.timeline-card h3,
.faq-card h3,
.news-strip-card strong,
.news-list-card strong,
.ticket-replies strong,
.admin-kpi-card strong,
.system-media-item span,
.admin-media-copy strong {
  margin: 0;
  color: var(--blue-900);
  font-size: 22px;
  line-height: 1.4;
}

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

.news-strip-card {
  padding: 22px;
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.home-news-layout.is-single {
  grid-template-columns: 1fr;
}

.home-news-feature,
.home-news-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(183, 199, 216, 0.5);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-news-feature:hover,
.home-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(40, 73, 45, 0.12);
}

.home-news-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.home-news-feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.home-news-feature-copy,
.home-news-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-news-feature-copy {
  padding: 30px;
}

.home-news-feature-copy span,
.home-news-card-copy span,
.news-page-meta {
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-news-feature-copy strong,
.home-news-card-copy strong {
  color: var(--blue-900);
  line-height: 1.45;
}

.home-news-feature-copy strong {
  font-size: 30px;
  font-family: var(--heading-font);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-side {
  display: grid;
  gap: 16px;
}

.home-news-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: stretch;
}

.home-news-card img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.home-news-card-copy {
  padding: 18px 18px 18px 20px;
}

.home-news-card-copy strong {
  font-size: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.story-card {
  align-self: start;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(183, 199, 216, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
}

.story-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
  background: var(--surface-soft);
}

.story-card-body {
  padding: 28px 30px;
  display: grid;
  gap: 18px;
}

.story-card-head {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(33, 49, 38, 0.08);
}

.story-card-head-main {
  display: grid;
  gap: 10px;
}

.story-card span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.28;
}

.story-card:not(:first-child) h3 {
  font-size: 26px;
}

.story-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.story-card-visuals {
  display: grid;
  gap: 10px;
}

.story-card-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.story-card-thumb {
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.story-card-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface-soft);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.story-card-thumb:hover img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

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

.story-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.story-points li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--gold));
}

.story-photo-more {
  position: absolute;
  inset: auto 14px 14px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(33, 49, 38, 0.72);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.story-gallery-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.story-card-gallery-extra.is-hidden {
  display: none;
}

.story-card-gallery-extra {
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.story-card-thumbs-extra {
  padding-top: 2px;
}

.story-lightbox[hidden] {
  display: none;
}

.story-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.story-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(16, 23, 18, 0.76);
  backdrop-filter: blur(10px);
}

.story-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 72px rgba(12, 24, 14, 0.22);
}

.story-lightbox-dialog img {
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  border-radius: 20px;
  background: #f5f7f1;
}

.story-lightbox-dialog p {
  margin: 0;
  padding-right: 40px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.story-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(33, 49, 38, 0.78);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.feature-banner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 26px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 56%, #6f8d37 100%);
  color: #ffffff;
}

.feature-banner-copy {
  padding: 12px;
}

.feature-banner-copy h2 {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 42px);
}

.feature-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
}

.feature-banner > img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  background: #ffffff;
  padding: 10px;
}

.partner-banner {
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: stretch;
}

.partner-showcase {
  position: relative;
  min-width: 0;
}

.partner-wall-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 34px 72px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 72px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.partner-wall-grid::-webkit-scrollbar {
  display: none;
}

.partner-wall-card {
  padding: 14px;
  flex: 0 0 min(78%, 760px);
  overflow: hidden;
  scroll-snap-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(12, 24, 14, 0.12);
  cursor: pointer;
  opacity: 0.56;
  filter: saturate(0.72);
  transform: translateY(26px) scale(0.88);
  transform-origin: center bottom;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.partner-wall-card.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 54px rgba(12, 24, 14, 0.22);
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.partner-wall-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: #ffffff;
}

.partner-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0;
  line-height: 0;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.partner-carousel-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.partner-carousel-nav.is-prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.partner-carousel-nav.is-next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.partner-carousel-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(calc(-50% - 1px));
}

.partner-carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.partner-carousel-nav.is-prev {
  left: 10px;
}

.partner-carousel-nav.is-next {
  right: 10px;
}

.partner-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.partner-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.partner-carousel-dots button.is-active {
  width: 28px;
  background: var(--gold);
}

.timeline-card,
.faq-card {
  padding: 26px;
}

.timeline-card span {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.certificate-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 11;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf4 100%);
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #ffffff;
}

.cta-card {
  position: relative;
}

.cta-card img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.cta-card-copy h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: 28px;
}

.page-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 28, 47, 0.8) 0%, rgba(9, 28, 47, 0.55) 42%, rgba(9, 28, 47, 0.15) 100%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
  color: #ffffff;
}

.page-hero-copy h1 {
  color: #ffffff;
}

.page-hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.showcase-panel,
.news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.showcase-copy {
  padding: 34px;
}

.showcase-panel img,
.news-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.news-page-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.news-list,
.job-list {
  display: grid;
  gap: 18px;
}

.news-list-card,
.job-list-card {
  padding: 22px 24px;
}

.news-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 22px;
  align-items: start;
}

.news-page-stack {
  display: grid;
  gap: 24px;
}

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

.news-metric-card {
  padding: 24px 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 199, 216, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 243, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.news-metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.news-metric-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.news-feature-hero {
  min-height: 420px;
}

.news-feature-copy,
.news-grid-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.news-card-grid {
  display: grid;
  gap: 18px;
}

.news-card-grid.is-archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-grid-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 199, 216, 0.5);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.news-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(40, 73, 45, 0.12);
}

.news-grid-media {
  display: block;
}

.news-grid-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.news-grid-copy {
  padding: 22px;
}

.news-grid-copy span {
  display: inline-block;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-grid-copy h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.45;
}

.news-feature-copy h2,
.news-grid-copy h3,
.news-grid-copy h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-grid-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-copy p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-meta,
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.news-feature-meta strong,
.news-card-meta strong,
.home-news-feature-copy em,
.home-news-card-copy em {
  color: rgba(33, 49, 38, 0.64);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.news-feature-meta em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.news-page-link,
.news-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(183, 199, 216, 0.72);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
  font-size: 14px;
}

.news-page-link {
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.news-page-link:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 122, 31, 0.4);
  color: var(--blue-700);
}

.news-page-link.is-current {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border-color: transparent;
  color: #ffffff;
}

.news-page-link.is-disabled {
  opacity: 0.42;
}

.news-page-meta {
  text-align: center;
}

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

.detail-hero-facts div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(183, 199, 216, 0.62);
  box-shadow: var(--shadow-md);
}

.detail-hero-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-hero-facts strong {
  color: var(--blue-900);
  font-size: 15px;
  line-height: 1.6;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.news-side-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.news-side-section {
  display: grid;
  gap: 12px;
}

.news-side-section > strong {
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.45;
}

.news-side-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.news-side-nav,
.news-related-list {
  display: grid;
  gap: 12px;
}

.news-side-nav a,
.news-related-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(183, 199, 216, 0.5);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-side-nav a {
  padding: 14px 16px;
  color: var(--blue-900);
  line-height: 1.8;
}

.news-related-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  overflow: hidden;
}

.news-side-nav a:hover,
.news-related-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 122, 31, 0.3);
  box-shadow: var(--shadow-md);
}

.news-related-item img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
}

.news-related-item div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.news-related-item span {
  color: var(--blue-700);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-related-item strong {
  color: var(--blue-900);
  font-size: 16px;
  line-height: 1.6;
}

.job-list-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card-media {
  display: block;
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.contact-facts {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.map-image {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
}

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

.service-process article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(183, 199, 216, 0.6);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.service-process strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 28px;
  font-family: var(--heading-font);
}

.service-process span {
  color: var(--blue-900);
  font-size: 16px;
}

.ticket-result {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  border: 1px solid rgba(183, 199, 216, 0.7);
}

.ticket-result h3 {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: 28px;
}

.ticket-result p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.ticket-replies {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.ticket-replies article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.ticket-replies p {
  display: block;
  padding: 0;
  border-bottom: none;
}

.ticket-replies span {
  color: var(--muted);
  font-size: 13px;
}

.detail-hero {
  padding: 48px 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.detail-hero-copy {
  padding: 10px 0;
}

.detail-hero-media {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(183, 199, 216, 0.55);
  box-shadow: var(--shadow-lg);
}

.detail-side-card {
  padding: 28px;
}

.detail-facts {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(33, 49, 38, 0.08);
  color: rgba(33, 49, 38, 0.58);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.detail-article.is-document-view {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.article-reading-shell {
  display: grid;
  gap: 24px;
}

.detail-article.is-document-view .article-meta-row {
  width: min(100%, 980px);
  margin: 0 auto 22px;
}

.article-reading-shell.is-seamless {
  width: min(100%, 980px);
  margin: 0 auto;
  gap: 0;
}

.article-reading-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(183, 199, 216, 0.5);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 244, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.article-reading-copy {
  display: grid;
  gap: 10px;
}

.article-reading-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(217, 122, 31, 0.1);
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-reading-copy strong {
  color: var(--blue-900);
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.article-reading-tools {
  display: grid;
  justify-items: end;
  gap: 12px;
  flex-shrink: 0;
}

.article-reading-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.article-reading-status[data-tone="success"] {
  color: var(--success);
}

.article-reading-status[data-tone="danger"] {
  color: var(--danger);
}

.richtext {
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.richtext img {
  margin: 20px 0;
}

.is-full {
  padding: 38px;
}

.section-gap {
  margin-top: 28px;
}

.site-form,
.admin-form,
.form-grid {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  gap: 16px;
}

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

.field-span-two,
.span-2 {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(217, 122, 31, 0.78);
  box-shadow: 0 0 0 4px rgba(217, 122, 31, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-weight: 600;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.form-tip {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-lang-toggle {
  display: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(183, 199, 216, 0.88);
  color: var(--blue-900);
}

.btn-danger {
  background: rgba(181, 68, 68, 0.1);
  color: var(--danger);
  border-color: rgba(181, 68, 68, 0.24);
}

.btn-block {
  width: 100%;
}

.text-link,
.btn-link {
  color: var(--blue-700);
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
}

.empty-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(183, 199, 216, 0.6);
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.empty-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 22px;
}

.flash-wrap,
.admin-flashes {
  padding-top: 18px;
  display: grid;
  gap: 12px;
}

.flash {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
}

.flash-success {
  background: rgba(31, 122, 86, 0.09);
  color: var(--success);
  border-color: rgba(31, 122, 86, 0.18);
}

.flash-danger {
  background: rgba(181, 68, 68, 0.08);
  color: var(--danger);
  border-color: rgba(181, 68, 68, 0.18);
}

.flash-warning {
  background: rgba(148, 105, 32, 0.1);
  color: var(--warning);
  border-color: rgba(148, 105, 32, 0.2);
}

.site-footer {
  margin-top: 72px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, #31562f 50%, #5f7b2f 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 26px;
  padding: 52px 0 28px;
}

.site-footer h4,
.site-footer h5 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--heading-font);
}

.site-footer p,
.site-footer a {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-slogan {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.footer-record {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-record:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  .site-topbar .shell,
  .site-header .shell {
    width: min(100%, calc(100% - 24px));
  }

  .site-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }

  .site-topbar-meta {
    gap: 8px 14px;
  }

  .header-inner {
    position: relative;
    min-height: 82px;
    gap: 16px;
    padding: 14px 0;
  }

  .brand {
    flex: 1 1 auto;
    padding-right: 0;
  }

  .brand img {
    width: clamp(188px, 30vw, 258px);
    max-width: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 15;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 14px;
    border: 1px solid rgba(183, 199, 216, 0.7);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .mobile-lang-toggle {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .mobile-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .hero-copy h1,
  .detail-hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(40px, 6vw, 60px);
  }

  .hero-lead,
  .hero-text,
  .detail-hero-copy p,
  .page-hero-copy p {
    font-size: 17px;
    line-height: 1.8;
  }

  .company-overview,
  .about-layout,
  .about-highlight-band,
  .story-grid,
  .contact-page-grid,
  .support-page-grid,
  .detail-page-grid,
  .home-news-layout,
  .home-news-feature,
  .showcase-panel,
  .news-feature-card,
  .news-feature-layout,
  .feature-banner,
  .partner-banner {
    grid-template-columns: 1fr;
  }

  .showcase-panel img,
  .news-feature-card img {
    min-height: 280px;
  }

  .story-card,
  .story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-card:nth-child(even) .story-card-cover,
  .story-card:nth-child(even) .story-card-body {
    order: initial;
  }

  .home-news-feature img {
    min-height: 280px;
  }

  .showcase-panel > img,
  .news-feature-card > img {
    order: -1;
  }

  .business-grid,
  .timeline-grid,
  .news-metrics-grid,
  .faq-grid,
  .news-strip,
  .service-process,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid,
  .news-card-grid {
    grid-template-columns: 1fr;
  }

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

  .home-news-card {
    grid-template-columns: 1fr;
  }

  .home-news-card img {
    min-height: 180px;
  }

  .partner-showcase {
    min-width: 0;
  }

  .partner-wall-grid {
    gap: 18px;
    padding: 24px 56px 14px;
    scroll-padding-inline: 56px;
  }

  .partner-wall-card {
    flex-basis: min(86%, 720px);
    padding: 12px;
  }

  .partner-carousel-nav {
    width: 42px;
    height: 42px;
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero-copy {
    padding: 78px 0 58px;
  }

  .section-head {
    gap: 16px;
  }

  .footer-grid {
    padding-top: 40px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100%, calc(100% - 28px));
  }

  .overview-gallery {
    grid-template-columns: 1fr;
  }

  .overview-image.is-large {
    grid-row: auto;
    min-height: 240px;
  }

  .business-grid,
  .product-grid,
  .timeline-grid,
  .about-highlight-band,
  .faq-grid,
  .news-strip,
  .home-news-side,
  .footer-grid,
  .service-process {
    grid-template-columns: 1fr;
  }

  .news-grid-card {
    grid-template-columns: 1fr;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-side-card {
    position: static;
    top: auto;
  }

  .news-grid-media img {
    min-height: 220px;
  }

  .home-news-feature-copy strong {
    font-size: 26px;
  }

  .job-list-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 22px;
  }

  .footer-slogan {
    align-items: flex-start;
    justify-content: flex-start;
    justify-items: start;
    gap: 4px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100%, calc(100% - 20px));
  }

  .site-topbar {
    font-size: 12px;
  }

  .site-topbar-meta {
    gap: 4px 10px;
  }

  .header-inner {
    min-height: 72px;
    padding: 12px 0;
  }

  .brand img {
    width: clamp(164px, 44vw, 220px);
  }

  .menu-toggle {
    padding: 9px 12px;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-kicker {
    margin-bottom: 10px;
    letter-spacing: 0.18em;
  }

  .hero-copy h1,
  .detail-hero-copy h1,
  .page-hero-copy h1 {
    font-size: 34px;
    max-width: none;
  }

  .hero-lead,
  .hero-text,
  .detail-hero-copy p,
  .page-hero-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions,
  .admin-form-actions {
    gap: 10px;
  }

  .hero-copy .btn,
  .detail-hero-actions .btn,
  .site-form .btn,
  .support-form-card .btn,
  .support-query-card .btn,
  .contact-form-card .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 240px;
  }

  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(9, 28, 47, 0.76) 0%, rgba(9, 28, 47, 0.36) 58%, rgba(9, 28, 47, 0.2) 100%);
  }

  .page-hero-copy {
    padding: 62px 0 46px;
  }

  .overview-panel,
  .detail-article,
  .detail-side-card,
  .contact-info-card,
  .contact-form-card,
  .support-form-card,
  .support-query-card,
  .news-feature-copy,
  .showcase-copy,
  .business-card-copy,
  .product-card-body,
  .cta-card-copy,
  .timeline-card,
  .faq-card,
  .news-strip-card,
  .news-list-card,
  .job-list-card,
  .news-grid-copy {
    padding: 20px;
  }

  .story-card-body {
    padding: 20px;
  }

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

  .showcase-panel img,
  .news-feature-card img,
  .home-news-feature img,
  .wide-image-card img,
  .qualification-banner img {
    min-height: 220px;
  }

  .home-news-feature-copy strong {
    font-size: 24px;
  }

  .detail-hero-facts {
    grid-template-columns: 1fr;
  }

  .home-news-card-copy strong {
    font-size: 18px;
  }

  .news-pagination {
    gap: 8px;
  }

  .news-page-link,
  .news-page-ellipsis {
    min-width: 40px;
    min-height: 40px;
    padding: 0 14px;
  }

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

  .checkbox {
    align-items: flex-start;
  }

  .form-tip {
    min-height: 40px;
  }

  .partner-wall-grid {
    gap: 14px;
    padding: 0px 0px 24px;
    scroll-padding-inline: 20px;
  }

  .partner-wall-card {
    flex-basis: 92%;
    padding: 10px;
    transform: translateY(14px) scale(0.94);
  }

  .partner-wall-card.is-active {
    transform: translateY(0) scale(1);
  }

  .partner-carousel-nav {
    display: none;
  }

  .partner-carousel-dots {
    margin-top: 2px;
  }

  .story-lightbox {
    padding: 14px;
  }

  .story-lightbox-dialog {
    padding: 14px;
    border-radius: 22px;
  }

  .story-lightbox-dialog img {
    border-radius: 16px;
  }

  .story-lightbox-dialog p {
    padding-right: 24px;
    font-size: 14px;
  }

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

  .cta-card img {
    aspect-ratio: 16 / 7;
  }

  .footer-grid {
    gap: 18px;
    padding: 34px 0 20px;
  }
}

.admin-body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  color: #333333;
  background: #f2f2f2;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: 100vh;
  max-height: 100vh;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #20222a;
  border-right: none;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  margin: 0;
  padding: 0 18px;
  background: #23262e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand img {
  width: 82px;
  max-width: 100%;
}

.admin-brand-copy {
  display: grid;
  gap: 2px;
}

.admin-brand strong {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.admin-brand span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.admin-profile {
  display: grid;
  gap: 6px;
  margin: 16px 12px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-profile span,
.admin-profile em {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.admin-profile strong {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.admin-profile em {
  font-style: normal;
  color: #ffb800;
}

.admin-nav {
  display: grid;
  gap: 18px;
  padding: 18px 12px 24px;
}

.admin-nav-group {
  display: grid;
  gap: 4px;
}

.admin-nav-title {
  padding: 0 14px 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.32);
}

.admin-nav a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 2px;
  color: #c2c2c2;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.admin-nav a:hover,
.admin-nav a.is-active {
  background: #009688;
  color: #ffffff;
}

.admin-nav a:hover::before,
.admin-nav a.is-active::before {
  background: rgba(255, 255, 255, 0.82);
}

.admin-sidebar-footer {
  display: grid;
  gap: 8px;
  padding: 0 12px 16px;
}

.admin-sidebar-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  color: #c2c2c2;
}

.admin-main {
  min-width: 0;
  min-height: 100vh;
  background: #f2f2f2;
}

.admin-main-inner {
  width: 100%;
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px 24px;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-topbar-copy {
  min-width: 0;
}

.admin-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #999999;
}

.admin-topbar h1 {
  margin: 4px 0 0;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}

.admin-subtitle {
  margin: 6px 0 0;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.8;
  color: #999999;
}

.admin-topbar-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user-chip {
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 10px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background: #fafafa;
}

.admin-user-chip span {
  font-size: 12px;
  color: #999999;
}

.admin-user-chip strong {
  font-size: 14px;
  color: #333333;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-flashes {
  padding: 16px 24px 0;
}

.admin-content-stack {
  display: grid;
  gap: 16px;
  padding: 16px 24px 24px;
}

.admin-alert-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px;
  padding: 12px 16px;
  border: 1px solid #ffe58f;
  border-radius: 2px;
  background: #fffbe6;
}

.admin-alert-strip strong {
  color: #d48806;
}

.admin-alert-strip span {
  flex: 1;
  color: #666666;
}

.admin-alert-strip a {
  color: #009688;
}

.admin-panel,
.admin-kpi-card,
.dashboard-news-item,
.admin-list-card,
.document-binding-card,
.document-page-card,
.admin-media-card,
.empty-panel {
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  box-shadow: none;
  background: #ffffff;
}

.admin-panel,
.document-binding-card,
.document-page-card,
.admin-media-card,
.empty-panel {
  padding: 20px;
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 16px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.panel-heading h2 {
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.panel-heading p {
  margin: 6px 0 0;
  color: #999999;
  line-height: 1.8;
}

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

.admin-kpi-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.admin-kpi-card span,
.kpi span {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #999999;
}

.admin-kpi-card strong,
.kpi strong {
  font-family: inherit;
  font-size: 30px;
  font-weight: 700;
  color: #1f1f1f;
}

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

.admin-quick-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e6e6e6;
  border-left: 3px solid #16baaa;
  border-radius: 2px;
  background: #fafafa;
  color: #333333;
  font-weight: 600;
}

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

.security-status-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e6e6e6;
}

.security-status-list > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.security-status-list span,
.admin-policy-list,
.field-hint,
.editor-status,
.login-tip {
  color: #999999;
}

.security-status-list strong {
  color: #333333;
}

.admin-policy-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.admin-form-sheet,
.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-body input,
.admin-body select,
.admin-body textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  background: #ffffff;
  color: #333333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-body textarea {
  min-height: 112px;
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
  border-color: #16baaa;
  box-shadow: 0 0 0 3px rgba(22, 186, 170, 0.08);
}

.field-note-card {
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background: #fafafa;
  color: #666666;
}

.field-note-card strong,
.admin-checklist-card strong,
.admin-copy-preview-card strong,
.admin-news-preview-copy strong {
  display: block;
  color: #333333;
}

.field-note-list,
.admin-checklist {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.field-note-list span {
  color: #666666;
  line-height: 1.75;
}

.admin-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.admin-news-preview-card,
.admin-checklist-card,
.admin-copy-preview-card {
  padding: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background: #fafafa;
}

.admin-news-preview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.admin-news-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: #f2f2f2;
}

.admin-news-preview-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-news-preview-copy span,
.admin-copy-preview-card span {
  color: #999999;
  font-size: 12px;
}

.admin-news-preview-copy p,
.admin-copy-preview-card p {
  margin: 0;
  color: #666666;
  line-height: 1.8;
}

.admin-news-preview-copy em {
  color: #999999;
  font-style: normal;
  font-size: 12px;
}

.admin-checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #ececec;
}

.admin-checklist-item span {
  color: #333333;
}

.admin-checklist-item em {
  font-style: normal;
  font-size: 12px;
}

.admin-checklist-item.is-ready em {
  color: #389e0d;
}

.admin-checklist-item.is-pending em {
  color: #d48806;
}

.admin-copy-preview-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.admin-body .btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  transform: none;
}

.admin-body .btn:hover {
  transform: none;
}

.admin-body .btn-primary {
  background: #16baaa;
  border-color: #16baaa;
}

.admin-body .btn-ghost {
  background: #ffffff;
  border-color: #dcdfe6;
  color: #333333;
}

.admin-body .btn-danger {
  background: #fff1f0;
  border-color: #ffccc7;
  color: #cf1322;
}

.admin-cover-panel .panel-heading {
  margin-bottom: 14px;
}

.cover-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 16px;
  align-items: start;
}

.admin-cover-panel .field-grid {
  gap: 12px;
}

.media-preview-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  background: #fafafa;
}

.media-preview-card > span {
  font-size: 12px;
  color: #999999;
}

.text-link,
.btn-link,
.table-actions a,
.panel-heading a,
.admin-sidebar-footer a:hover {
  color: #009688;
}

.table-wrap {
  margin: 0;
  padding: 0;
  overflow: auto;
}

.table {
  width: 100%;
  min-width: 100%;
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.table th {
  background: #fafafa;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.table td {
  color: #333333;
}

.table tbody tr:hover td {
  background: #fafafa;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

.status-badge.status-open {
  background: #fff7e6;
  color: #d48806;
}

.status-badge.status-processing {
  background: #e6f7ff;
  color: #1677ff;
}

.status-badge.status-closed {
  background: #f6ffed;
  color: #389e0d;
}

.dashboard-news-stack,
.admin-list-stack,
.admin-media-grid {
  display: grid;
  gap: 12px;
}

.dashboard-news-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.dashboard-news-item span,
.admin-list-copy span {
  font-size: 12px;
  color: #999999;
}

.dashboard-news-item strong,
.admin-list-copy h3 {
  display: block;
  margin: 6px 0 8px;
  font-size: 18px;
  color: #333333;
}

.dashboard-news-item p,
.admin-list-copy p {
  margin: 0;
  line-height: 1.8;
  color: #666666;
}

.dashboard-news-item em,
.admin-list-copy em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  color: #16baaa;
}

.admin-list-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.admin-list-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: #f6f6f6;
}

.admin-list-copy {
  display: grid;
  align-content: start;
}

.admin-list-actions {
  display: grid;
  gap: 8px;
  align-content: center;
}

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

.admin-media-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.admin-media-card img,
.admin-media-card video,
.media-preview-image {
  width: 100%;
  border-radius: 2px;
}

.media-preview-image {
  display: block;
  min-height: 180px;
  max-height: 260px;
  object-fit: cover;
  background: #f6f6f6;
}

.media-preview-image.is-empty {
  object-fit: contain;
}

.admin-media-copy {
  display: grid;
  gap: 4px;
}

.admin-media-copy span,
.admin-doc-card span,
.system-media-item code {
  font-size: 12px;
  color: #999999;
  word-break: break-all;
}

.admin-doc-card {
  display: grid;
  gap: 10px;
  align-content: space-between;
  min-height: 220px;
  padding: 16px;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  background: #fafafa;
}

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

.system-media-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  background: #fafafa;
}

.mini-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
}

.mini-filter select {
  min-width: 140px;
}

.document-binding-card,
.document-page-card {
  padding: 18px;
}

.document-page-card.is-reading-mode {
  padding: 28px 28px 34px;
  border: 1px solid rgba(183, 199, 216, 0.5);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 248, 239, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-lg);
}

.document-page-card.is-reading-mode.is-seamless {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.document-binding-head,
.document-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.document-binding-head strong,
.document-page-head strong {
  display: block;
  font-size: 16px;
  color: #333333;
}

.document-page-card.is-reading-mode .document-page-head {
  margin-bottom: 22px;
}

.document-page-card.is-reading-mode .document-page-head strong {
  font-size: 18px;
  color: var(--blue-900);
}

.document-page-card.is-reading-mode .document-page-head span {
  color: var(--muted);
}

.document-binding-head span,
.document-page-head span,
.document-preview-empty,
.document-loading {
  color: #999999;
}

.document-preview-shell {
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  background: #fafafa;
}

.document-preview-empty,
.document-loading {
  padding: 24px;
}

.pdf-article-viewer {
  display: grid;
  gap: 18px;
}

.pdf-article-viewer.is-seamless {
  gap: 22px;
}

.pdf-article-viewer .document-loading {
  padding: 52px 0 18px;
  color: rgba(33, 49, 38, 0.56);
  text-align: center;
}

.pdf-article-stack {
  display: grid;
  gap: 20px;
}

.pdf-article-page {
  display: grid;
  gap: 0;
  justify-items: center;
}

.pdf-article-page-top {
  width: min(100%, 920px);
  display: flex;
  justify-content: flex-end;
}

.pdf-article-page-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(183, 199, 216, 0.6);
  color: rgba(33, 49, 38, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.pdf-article-paper {
  width: min(100%, 920px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 251, 247, 0.98));
}

.pdf-article-paper canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #ffffff;
}

.document-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #ffffff;
}

.document-frame.is-public {
  min-height: 820px;
}

.document-docx-surface {
  min-height: 420px;
  background: #f7f7f7;
}

.document-docx-surface.is-public {
  min-height: 760px;
}

.document-docx-surface.article-docx-surface {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.document-docx-surface .docx-wrapper {
  padding: 20px 0 !important;
  background: transparent;
}

.document-docx-surface .docx {
  margin: 0 auto 20px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
}

.document-fallback {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 24px;
  border-radius: 24px;
  border: 1px dashed rgba(183, 199, 216, 0.88);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.document-fallback strong {
  color: var(--blue-900);
  font-size: 20px;
}

.document-fallback span {
  color: var(--muted);
  line-height: 1.8;
}

.doc-link {
  color: var(--blue-700);
  font-weight: 600;
}

.login-body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(16, 28, 20, 0.82), rgba(27, 52, 35, 0.5)),
    url("../media/headquarters-building.jpg") center center / cover no-repeat;
}

.login-body::before,
.login-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.login-body::before {
  background:
    linear-gradient(180deg, rgba(8, 16, 11, 0.18), rgba(8, 16, 11, 0.48)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.login-body::after {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  opacity: 0.7;
}

.login-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  width: min(1120px, calc(100% - 40px));
  min-height: min(760px, calc(100vh - 80px));
  margin: 40px auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(13, 28, 18, 0.16);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.login-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 56px 52px;
  background:
    linear-gradient(180deg, rgba(17, 31, 21, 0.82), rgba(17, 31, 21, 0.56)),
    linear-gradient(135deg, rgba(24, 54, 38, 0.94), rgba(44, 76, 53, 0.78));
  color: #ffffff;
  text-align: center;
}

.login-brand {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.login-logo {
  width: min(360px, 68%);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.login-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: rgba(255, 228, 179, 0.86);
}

.login-visual h1 {
  margin: 0;
  max-width: 10em;
  font-size: 40px;
  line-height: 1.28;
}

.login-points {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.login-point {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}

.login-point strong {
  font-size: 16px;
  color: #ffffff;
}

.login-point span {
  color: rgba(255, 255, 255, 0.7);
}

.login-card {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 54px 46px;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 242, 0.92));
  backdrop-filter: blur(14px);
}

.login-card-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: #1f1f1f;
}

.login-card-head p {
  margin: 0;
  color: #7c8678;
  line-height: 1.8;
}

.login-card .admin-form {
  gap: 18px;
}

.login-card .field-group label {
  margin-bottom: 10px;
  color: #37523a;
  font-weight: 700;
}

.login-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(61, 100, 53, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #223425;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.login-card input:focus {
  outline: none;
  border-color: rgba(217, 122, 31, 0.78);
  box-shadow: 0 0 0 4px rgba(217, 122, 31, 0.12);
  background: #ffffff;
}

.login-card .flash {
  border-radius: 14px;
}

.login-tip {
  margin: -4px 0 2px;
  font-size: 13px;
  line-height: 1.75;
  color: #7c8678;
}

.btn-block {
  width: 100%;
}

.login-card .btn-block {
  min-height: 54px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(217, 122, 31, 0.2);
}

@media (max-width: 980px) {
  .home-hero {
    padding-bottom: 72px;
  }

  .hero-banner-card,
  .hero-banner-content {
    min-height: 580px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-banner-content {
    padding: 48px 32px;
  }

  .hero-copy.is-overlay {
    max-width: 540px;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-reading-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-reading-tools {
    width: 100%;
    justify-items: start;
  }

  .document-page-card.is-reading-mode {
    padding: 22px 22px 28px;
  }

  .document-page-card.is-reading-mode.is-seamless {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-bottom: 56px;
  }

  .home-hero-shell {
    width: 100%;
  }

  .hero-banner-card,
  .hero-banner-content {
    min-height: 460px;
  }

  .hero-banner-card {
    border-radius: 0;
  }

  .hero-banner-overlay {
    background:
      linear-gradient(180deg, rgba(18, 42, 25, 0.5) 0%, rgba(18, 42, 25, 0.28) 36%, rgba(18, 42, 25, 0.34) 100%);
  }

  .hero-banner-content {
    align-items: center;
    padding: 28px 22px 30px;
  }

  .hero-copy.is-overlay {
    max-width: none;
  }

  .hero-copy.is-overlay .section-kicker {
    margin-bottom: 12px;
  }

  .hero-brand-kicker {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .hero-copy.is-overlay h1 {
    max-width: none;
  }

  .hero-brand-title {
    font-size: 30px !important;
  }

  .hero-copy.is-overlay .hero-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.8;
  }

  .article-meta-row {
    margin-bottom: 18px;
    padding-bottom: 14px;
    font-size: 12px;
  }

  .article-reading-head {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .article-reading-copy strong {
    font-size: 22px;
  }

  .document-page-card.is-reading-mode {
    padding: 18px 14px 22px;
    border-radius: 24px;
  }

  .document-page-card.is-reading-mode.is-seamless {
    padding: 0;
    border-radius: 0;
  }

  .document-page-card.is-reading-mode .document-page-head {
    margin-bottom: 18px;
  }

  .pdf-article-stack {
    gap: 20px;
  }

  .pdf-article-page-top {
    justify-content: center;
  }

  .pdf-article-paper {
    border-radius: 22px;
  }
}

@media (max-width: 1360px) {
  .admin-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .admin-panel-grid,
  .ticket-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-list-card {
    grid-template-columns: 180px minmax(0, 1fr) 150px;
  }

  .admin-media-grid,
  .admin-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cover-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-preview-grid,
  .admin-news-preview-card {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar-tools {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  .admin-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-sidebar {
    position: static;
    align-self: stretch;
    height: auto;
    max-height: none;
  }

  .admin-nav {
    gap: 14px;
  }

  .admin-kpi-grid,
  .admin-quick-links,
  .admin-media-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-flashes,
  .admin-content-stack {
    padding-left: 16px;
    padding-right: 16px;
  }

  .admin-alert-strip {
    margin: 0 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-top-actions {
    flex-wrap: wrap;
  }

  .admin-list-card,
  .ticket-detail-grid,
  .document-binding-head,
  .document-page-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-list-actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .document-frame,
  .document-frame.is-public {
    min-height: 620px;
  }

  .document-docx-surface.is-public {
    min-height: 520px;
  }

  .login-shell {
    grid-template-columns: 1fr;
    width: min(1040px, calc(100% - 24px));
    margin: 24px auto;
    min-height: auto;
  }

  .login-visual,
  .login-card {
    padding: 32px 24px;
  }

  .login-visual h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .login-body::after {
    inset: 14px;
    border-radius: 20px;
  }

  .login-shell {
    width: min(100%, calc(100% - 20px));
    margin: 16px auto;
    border-radius: 18px;
  }

  .login-visual,
  .login-card {
    padding: 24px 18px;
  }

  .login-visual h1 {
    font-size: 28px;
  }

  .login-logo {
    width: min(300px, 78%);
  }

  .login-card-head h2 {
    font-size: 26px;
  }

  .login-card input,
  .login-card .btn-block {
    min-height: 50px;
  }
}
