:root {
  --brand-blue: #2f61b1;
  --brand-blue-dark: #214b8a;
  --brand-blue-light: #eaf2ff;
  --text-main: #333333;
  --text-muted: #717171;
  --line: #e5e8ed;
  --section-bg: #f6f8fb;
  --white: #ffffff;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text-main);
  font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
figure,
ol,
ul {
  margin: 0;
}

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

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

.site-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

/* 网站导航 */
.site-header {
  height: 70px;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #edf0f4;
  background: var(--white);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.company-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.company-brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.company-brand strong {
  color: #252525;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-brand small {
  margin-top: 4px;
  color: #858585;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.desktop-navigation {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-navigation a {
  min-width: 84px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 2px;
  color: #333333;
  font-size: 15px;
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
  background: var(--brand-blue);
  color: var(--white);
}

.mobile-navigation {
  display: none;
  position: relative;
}

.mobile-navigation summary {
  width: 58px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--brand-blue-dark);
  cursor: pointer;
  list-style: none;
}

.mobile-navigation summary::-webkit-details-marker {
  display: none;
}

.mobile-navigation > div {
  width: 180px;
  position: absolute;
  top: 44px;
  right: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 48, 82, 0.12);
}

.mobile-navigation a {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f2f5;
}

.mobile-navigation a:last-child {
  border-bottom: 0;
}

/* 首页横幅 */
.home-hero {
  overflow: hidden;
  background: linear-gradient(110deg, #183c78 0%, #3470bb 56%, #dcecff 100%);
}

.home-hero-inner {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  width: min(650px, 58%);
  padding: 70px 0;
  color: var(--white);
}

.hero-eyebrow {
  margin-bottom: 14px;
  color: #d5e6ff;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  font-size: clamp(42px, 3.3vw, 56px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.hero-copy > p:not(.hero-eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.hero-copy .primary-button {
  margin-top: 32px;
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-blue-dark);
}

.hero-company {
  width: 380px;
  flex: 0 0 380px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(19, 53, 105, 0.28);
  color: var(--white);
}

.hero-company-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-company-heading img {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  object-fit: contain;
}

.hero-company-heading > div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.hero-company-heading strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.hero-company-heading span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-company dl {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-company dl div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-company dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.hero-company dd {
  font-size: 14px;
}

.company-intro p + p {
  margin-top: 12px;
}

/* 通用栏目 */
.plain-section {
  padding: 88px 0;
  background: var(--white);
}

.section-title {
  margin-bottom: 26px;
  text-align: center;
}

.section-title p {
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.section-title h2 {
  margin-top: 5px;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.section-title h2::after {
  content: "";
  width: 38px;
  height: 2px;
  display: block;
  margin: 15px auto 0;
  background: var(--brand-blue);
}

.section-intro {
  max-width: 980px;
  margin: 0 auto;
  color: #555555;
  font-size: 16px;
  line-height: 2.1;
  text-align: center;
}

.primary-button,
.secondary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--brand-blue);
  border-radius: 2px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-button {
  background: var(--brand-blue);
  color: var(--white);
}

.primary-button:hover {
  background: var(--brand-blue-dark);
}

.secondary-button {
  background: transparent;
  color: var(--brand-blue);
}

.secondary-button:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 企业理念 */
.advantage-section {
  padding-top: 34px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.advantage-item {
  min-height: 190px;
  padding: 0 34px;
  text-align: center;
}

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

.advantage-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid #b7c9e6;
  border-radius: 50%;
  color: var(--brand-blue);
  font-size: 14px;
}

.advantage-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
}

.advantage-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* 核心产品 */
.product-section {
  padding: 90px 0;
  overflow: hidden;
  background: var(--section-bg);
}

.product-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 90px;
}

.product-screen {
  width: 280px;
  height: 520px;
  justify-self: center;
  overflow: hidden;
  padding: 9px;
  border: 1px solid #dce2ea;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(37, 61, 96, 0.14);
}

.product-screen img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: top;
}

.product-label,
.article-kicker {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.product-copy h2 {
  margin-top: 8px;
  color: #2e2e2e;
  font-size: 36px;
  font-weight: 500;
}

.product-lead {
  margin-top: 8px;
  color: var(--brand-blue);
  font-size: 20px;
}

.product-copy > p:not(.product-label):not(.product-lead) {
  max-width: 660px;
  margin-top: 20px;
  color: #5b5b5b;
}

.product-points {
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid #dfe4eb;
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #dfe4eb;
}

.product-points strong {
  font-weight: 500;
}

.product-points span {
  color: var(--text-muted);
}

/* 资讯与公开信息 */
.news-list {
  max-width: 1020px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}

.news-list > a {
  min-height: 118px;
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  display: flex;
  flex-direction: column;
  color: var(--brand-blue);
  line-height: 1.2;
}

.news-list time strong {
  font-size: 35px;
  font-weight: 400;
}

.news-list time span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 12px;
}

.news-list h3 {
  font-size: 18px;
  font-weight: 500;
}

.news-list p {
  margin-top: 5px;
  color: var(--text-muted);
}

.news-arrow {
  color: var(--brand-blue);
  font-size: 14px;
}

.record-section {
  padding: 58px 0;
  background: var(--section-bg);
}

.record-inner {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 45px;
}

.record-inner > div > p {
  color: var(--brand-blue);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.record-inner h2 {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 500;
}

.record-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.record-list div {
  padding-left: 20px;
  border-left: 2px solid #d5dfed;
}

.record-list dt {
  color: var(--text-muted);
  font-size: 12px;
}

.record-list dd {
  margin-top: 4px;
  font-size: 14px;
}

/* 联系方式与页脚 */
.contact-section {
  padding: 75px 0;
  background: #24446f;
  color: var(--white);
}

.section-title-light p,
.section-title-light h2 {
  color: var(--white);
}

.section-title-light h2::after {
  background: rgba(255, 255, 255, 0.62);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 34px;
}

.contact-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-grid strong,
.contact-grid a {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 400;
}

.site-footer {
  padding: 20px 0;
  background: #1d3557;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a:hover {
  color: var(--white);
}

/* 内页横幅 */
.page-banner {
  min-height: 250px;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #224a85, #3c74b9);
  color: var(--white);
}

.page-banner p {
  color: #cfe0f8;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.page-banner h1 {
  margin-top: 7px;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.page-banner span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: #8a8a8a;
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--brand-blue);
}

.breadcrumb strong {
  color: #555555;
  font-weight: 400;
}

/* 产品文章 */
.article-main {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
  padding: 38px 0 90px;
}

.article-heading {
  padding: 44px 0 30px;
}

.article-heading h1 {
  color: #2f2f2f;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 18px;
  color: #8a8a8a;
  font-size: 13px;
}

.article-summary {
  padding: 24px 28px;
  border-left: 4px solid var(--brand-blue);
  background: var(--section-bg);
}

.article-summary strong {
  color: var(--brand-blue-dark);
  font-size: 15px;
}

.article-summary p {
  margin-top: 6px;
  color: #555555;
}

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

.article-section h2 {
  margin: 8px 0 22px;
  color: #303030;
  font-size: 28px;
  font-weight: 500;
}

.article-section > p:not(.article-kicker):not(.small-note) {
  margin-top: 14px;
  color: #4f4f4f;
  font-size: 16px;
}

.article-section a:not(.primary-button):not(.secondary-button) {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.timeline {
  margin: 28px 0 18px;
  padding-left: 26px;
  border-left: 2px solid #c9d7eb;
}

.timeline div {
  position: relative;
  padding: 0 0 24px 20px;
}

.timeline div:last-child {
  padding-bottom: 0;
}

.timeline div::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  left: -32px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue);
}

.timeline time {
  color: var(--brand-blue-dark);
  font-weight: 600;
}

.timeline p {
  margin-top: 4px;
  color: #5d5d5d;
}

.small-note {
  color: #8a8a8a;
  font-size: 13px;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.two-column-list div {
  padding: 24px;
  border: 1px solid var(--line);
}

.two-column-list strong {
  color: var(--brand-blue-dark);
  font-size: 17px;
}

.two-column-list p {
  margin-top: 8px;
  color: var(--text-muted);
}

.process-list {
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 13px;
}

.process-list strong {
  font-size: 16px;
  font-weight: 500;
}

.process-list p {
  margin-top: 3px;
  color: var(--text-muted);
}

.product-figure {
  margin: 38px 0 24px;
  padding: 30px;
  background: var(--section-bg);
  text-align: center;
}

.product-figure > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}

.product-figure img {
  width: 220px;
  border: 7px solid var(--white);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(31, 57, 94, 0.12);
}

.product-figure figcaption {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.info-table {
  margin: 28px 0;
  border-top: 1px solid #dfe3e9;
}

.info-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 54px;
  border-bottom: 1px solid #dfe3e9;
}

.info-table dt,
.info-table dd {
  display: flex;
  align-items: center;
  padding: 12px 18px;
}

.info-table dt {
  background: var(--section-bg);
  color: #666666;
}

.info-table dd {
  color: #333333;
  font-weight: 500;
}

.source-note {
  border-bottom: 0;
}

.source-note .button-row {
  margin-top: 28px;
}

/* 信息披露 */
.disclosure-main {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  padding: 38px 0 90px;
}

.disclosure-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
  padding: 64px 0 80px;
}

.disclosure-intro h2,
.verification-box h2 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

.disclosure-intro > div > p:last-child {
  margin-top: 20px;
  color: #626262;
}

.disclosure-intro .info-table {
  margin: 0;
}

.evidence-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.evidence-section > .section-intro {
  margin-bottom: 44px;
  font-size: 14px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.evidence-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.evidence-grid figure > a {
  height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f2f4f7;
}

.evidence-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.evidence-grid figcaption {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.evidence-grid figcaption strong {
  font-size: 17px;
  font-weight: 500;
}

.evidence-grid figcaption span {
  margin-top: 4px;
  color: var(--brand-blue);
  font-size: 13px;
}

.evidence-grid figcaption p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.verification-box {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  margin-top: 10px;
  padding: 42px 48px;
  background: var(--section-bg);
}

.verification-box > div:last-child > p + p {
  margin-top: 12px;
}

.verification-box .button-row {
  margin-top: 24px;
}

/* 响应式布局 */
@media (max-width: 1080px) {
  .desktop-navigation a {
    min-width: auto;
    padding: 0 11px;
    font-size: 14px;
  }

  .home-hero-inner {
    min-height: 480px;
  }

  .hero-company {
    width: 330px;
    flex-basis: 330px;
    padding: 28px;
  }

  .product-inner {
    grid-template-columns: 340px 1fr;
    gap: 50px;
  }

  .record-inner {
    grid-template-columns: 210px 1fr;
  }

  .record-inner > .secondary-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 64px;
  }

  .desktop-navigation {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .company-logo {
    width: 38px;
    height: 38px;
  }

  .company-brand strong {
    font-size: 16px;
  }

  .home-hero-inner {
    min-height: 470px;
  }

  .hero-copy {
    width: 55%;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-company {
    width: 320px;
    flex-basis: 320px;
    padding: 24px;
  }

  .hero-company-heading img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .hero-company-heading strong {
    font-size: 19px;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .advantage-item:nth-child(3) {
    border-left: 0;
  }

  .product-inner {
    grid-template-columns: 280px 1fr;
    gap: 42px;
  }

  .product-screen {
    width: 235px;
    height: 440px;
  }

  .record-list {
    grid-template-columns: 1fr;
  }

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

  .contact-grid div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .disclosure-intro,
  .verification-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .evidence-grid figure {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .evidence-grid figure > a {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .article-main,
  .disclosure-main {
    width: min(calc(100% - 32px), var(--shell));
  }

  .company-brand small {
    display: none;
  }

  .home-hero-inner {
    min-height: auto;
    display: block;
    padding-bottom: 48px;
  }

  .hero-copy {
    width: 100%;
    padding: 52px 0 36px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy > p:not(.hero-eyebrow) {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-copy .primary-button {
    margin-top: 22px;
  }

  .hero-company {
    width: 100%;
    padding: 24px 22px;
  }

  .plain-section,
  .product-section {
    padding: 66px 0;
  }

  .advantage-section {
    padding-top: 12px;
  }

  .section-title p {
    font-size: 19px;
  }

  .section-intro {
    font-size: 15px;
    text-align: left;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
    row-gap: 0;
  }

  .advantage-item {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    padding: 22px 0;
    text-align: left;
  }

  .advantage-item + .advantage-item,
  .advantage-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-item > span {
    width: 46px;
    height: 46px;
    grid-row: span 2;
    margin: 0;
  }

  .advantage-item h3 {
    margin: 0;
  }

  .advantage-item p {
    margin-top: 4px;
  }

  .product-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-screen {
    width: 210px;
    height: 392px;
  }

  .product-copy h2 {
    font-size: 29px;
  }

  .product-points li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .news-list {
    margin-top: 30px;
  }

  .news-list > a {
    grid-template-columns: 62px 1fr;
    gap: 16px;
  }

  .news-list time strong {
    font-size: 30px;
  }

  .news-list h3 {
    font-size: 16px;
    line-height: 1.65;
  }

  .news-list p,
  .news-arrow {
    display: none;
  }

  .record-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .record-inner > .secondary-button {
    grid-column: auto;
  }

  .contact-grid {
    margin-top: 30px;
  }

  .contact-grid div {
    min-height: 90px;
    padding: 18px 10px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .page-banner {
    min-height: 210px;
  }

  .page-banner h1 {
    font-size: 29px;
  }

  .page-banner span {
    font-size: 14px;
  }

  .article-main,
  .disclosure-main {
    padding-top: 26px;
    padding-bottom: 68px;
  }

  .article-heading {
    padding: 32px 0 24px;
  }

  .article-heading h1 {
    font-size: 27px;
  }

  .article-summary {
    padding: 20px;
  }

  .article-section {
    padding: 40px 0;
  }

  .article-section h2 {
    font-size: 24px;
  }

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

  .product-figure {
    padding: 22px 12px;
  }

  .product-figure > div {
    gap: 12px;
  }

  .product-figure img {
    width: calc(50% - 6px);
    border-width: 4px;
    border-radius: 15px;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .info-table dt {
    padding-bottom: 4px;
  }

  .info-table dd {
    padding-top: 4px;
  }

  .disclosure-intro {
    padding: 48px 0 62px;
  }

  .evidence-section {
    padding: 58px 0;
  }

  .evidence-grid figure {
    display: block;
  }

  .evidence-grid figure > a {
    height: 230px;
  }

  .verification-box {
    padding: 28px 22px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-navigation,
  .button-row {
    display: none;
  }

  body {
    color: #000000;
  }

  .page-banner {
    min-height: 0;
    padding: 30px 0;
    background: #ffffff;
    color: #000000;
  }

  .page-banner p,
  .page-banner span {
    color: #444444;
  }
}
