:root {
  color-scheme: light;
  --brand: #194375;
  --brand-deep: #0c2a4d;
  --blue: #0075c2;
  --blue-dark: #003876;
  --blue-pale: #e7edf7;
  --green: #44af35;
  --orange: #ef8200;
  --yellow: #fac83e;
  --pink: #f3a18a;
  --ink: #333333;
  --muted: #666666;
  --line: #e1e1e1;
  --paper: #ffffff;
  --soft: #f7f6f5;
  --radius: 4px;
  --shadow: 0 16px 45px rgba(12, 42, 77, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Jost", "Noto Sans CJK SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.22em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--brand);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.035em;
}
h1 { margin-bottom: 24px; font-size: clamp(2.25rem, 5vw, 4.6rem); }
h2 { margin-bottom: 18px; font-size: clamp(1.65rem, 3vw, 2.7rem); }
h3 { margin-bottom: 10px; font-size: 1.28rem; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); }
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; padding: 8px 14px;
  color: #fff; background: var(--brand); transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
  margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}

.site-header { position: relative; z-index: 30; border-bottom: 1px solid var(--line); background: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1440px, calc(100% - 44px)); min-height: 92px; margin-inline: auto; gap: 28px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; gap: 14px; }
.brand img { width: 142px; max-height: 50px; }
.brand span { padding-left: 13px; border-left: 1px solid #c7d1dc; color: var(--brand); font-size: 0.76rem; line-height: 1.3; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(9px, 1.15vw, 20px); }
.nav-links a, .mobile-nav-links a {
  position: relative; color: var(--brand); font-size: 0.78rem; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.nav-links a::after {
  position: absolute; right: 0; bottom: -12px; left: 0; height: 3px;
  background: var(--blue); content: ""; transform: scaleX(0); transition: transform 180ms ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary {
  padding: 8px 14px; border: 1px solid var(--brand); border-radius: 999px;
  color: var(--brand); cursor: pointer; font-size: 0.88rem; list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-links {
  position: absolute; top: 50px; right: 0; display: grid; width: min(330px, calc(100vw - 32px));
  padding: 12px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow);
}
.mobile-nav-links a { padding: 11px 12px; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.mobile-nav-links a:last-child { border-bottom: 0; }

.hero-media { position: relative; overflow: hidden; background: var(--brand-deep); }
.hero-video { width: 100%; min-height: 520px; max-height: 720px; object-fit: cover; opacity: 0.9; }
.hero-overlay {
  position: absolute; inset: 0; display: flex; align-items: end;
  background: linear-gradient(90deg, rgba(12, 42, 77, 0.9) 0%, rgba(12, 42, 77, 0.52) 46%, rgba(12, 42, 77, 0.08) 100%);
}
.hero-copy { width: min(1180px, calc(100% - 48px)); margin: 0 auto clamp(54px, 8vw, 110px); color: #fff; }
.hero-copy h1 { max-width: 820px; margin-bottom: 22px; color: #fff; font-size: clamp(2.6rem, 6.4vw, 6.2rem); }
.hero-copy .lead { max-width: 700px; color: #fff; font-size: clamp(1rem, 1.5vw, 1.22rem); }
.kicker, .eyebrow {
  margin-bottom: 14px; color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
}
.hero-copy .kicker { color: #fff; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; margin-top: 30px; gap: 12px; }
.hero-copy-actions-only { margin-bottom: clamp(40px, 6vw, 78px); }
.hero-product-actions { margin-top: 0; justify-content: center; }
.hero-product-actions .button { min-width: 190px; box-shadow: 0 10px 24px rgba(12,42,77,.2); }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 10px 24px;
  border: 1px solid var(--brand); border-radius: 999px; font-size: 0.9rem; font-weight: 700; text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--brand); background: #fff; border-color: #fff; }
.button-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.75); }
.button-blue { color: #fff; background: var(--brand); }

.section { padding: clamp(74px, 9vw, 126px) 0; }
.section-soft { background: var(--soft); }
.section-blue { color: #fff; background: var(--brand); }
.section-blue h2, .section-blue h3, .section-blue .kicker { color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 42px; gap: 36px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { max-width: 560px; color: var(--muted); }
.section-blue .section-heading > p { color: #d7e3ef; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.product-family { margin: 0; padding: 22px 26px 14px; background: #fff; }
.product-card-visual { display: grid; height: 300px; padding: 24px; place-items: center; background: #f6f8fb; }
.product-card-visual img { width: 100%; height: 100%; object-fit: contain; }
.product-card-copy { padding: 26px; }
.product-card h3 { margin-bottom: 8px; }
.specification, .source-note, .pending-copy, .record-placeholder, .caption, .status-note { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; color: var(--blue-dark); font-weight: 700; gap: 8px; text-decoration: none; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }

.entry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: #dce4ed; }
.entry-card { min-height: 230px; padding: 32px; background: #fff; text-decoration: none; }
.entry-card:nth-child(1) { border-top: 5px solid var(--blue); }
.entry-card:nth-child(2) { border-top: 5px solid var(--green); }
.entry-card:nth-child(3) { border-top: 5px solid var(--orange); }
.entry-card:nth-child(4) { border-top: 5px solid var(--yellow); }
.entry-card p { color: var(--muted); font-size: .9rem; }
.latest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.latest-card { padding: 28px; border: 1px solid var(--line); background: #fff; }
.latest-card time { color: var(--muted); font-size: .8rem; }
.latest-card h3 { margin-top: 10px; }
.latest-card h3 a { text-decoration: none; }
.latest-card > p:not(.source-language-title) { color: #4c5660; font-size: .9rem; }
.section-more { margin-top: 30px; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; width: min(1180px, calc(100% - 48px)); margin: 24px auto 0; color: var(--muted); font-size: .78rem; gap: 8px; }
.page-heading { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(46px, 6vw, 80px); }
.page-heading::before { display: block; width: 62px; height: 4px; margin-bottom: 28px; background: var(--blue); content: ""; }
.page-heading h1 { max-width: 980px; margin-bottom: 0; }
.page-heading .lead { max-width: 800px; margin: 24px 0 0; }
.heading-action { margin-top: -28px; margin-bottom: 16px; }

.facts-list, .contact-list, .single-fact { margin: 0; }
.facts-list > div, .contact-list > div, .single-fact > div {
  display: grid; grid-template-columns: minmax(150px, .28fr) 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); gap: 22px;
}
.facts-list > div:first-child, .contact-list > div:first-child, .single-fact > div:first-child { border-top: 1px solid var(--line); }
dt { color: var(--brand); font-size: .9rem; font-weight: 700; }
dd { margin: 0; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 9vw, 130px); }
.split-panel img { width: 100%; }
.facts-compact { border-top: 1px solid #cbd8e5; }
.facts-compact div { display: flex; align-items: baseline; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid #cbd8e5; gap: 20px; }
.facts-compact span { color: #d7e3ef; font-size: .85rem; }
.facts-compact strong { color: #fff; text-align: right; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.gallery-card { margin: 0; border: 1px solid var(--line); background: #fff; }
.gallery-image { display: grid; min-height: 390px; padding: 20px; place-items: center; background: #f7f9fb; }
.gallery-image img { width: 100%; height: 100%; max-height: 470px; object-fit: contain; }
.gallery-card figcaption { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.media-placeholder { display: grid; min-height: 310px; padding: 28px; place-content: center; border: 1px dashed #9bb0c5; text-align: center; background: var(--blue-pale); }
.media-placeholder span { color: var(--brand); font-weight: 700; }
.media-placeholder small { display: block; margin-top: 7px; color: var(--muted); }
.product-only { padding-top: 38px; padding-bottom: 110px; }
.single-fact { max-width: 500px; margin-bottom: 38px; }
.dosage-panel { margin-top: 34px; padding: 30px; border-left: 5px solid var(--blue); background: var(--blue-pale); }
.dosage-panel h2 { font-size: 1.38rem; }
.dosage-panel p:last-child { margin-bottom: 0; }
.missing-box { margin-top: 28px; padding: 22px 26px; border: 1px dashed #a9b7c6; color: var(--muted); background: #fff; }
.missing-box h2 { font-size: 1.12rem; }

.media-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 72px; gap: 16px; }
.media-tile { position: relative; overflow: hidden; margin: 0; background: var(--blue-pale); }
.media-tile img, .media-tile video { width: 100%; height: 100%; object-fit: cover; }
.media-tile figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 24px 18px 12px; color: #fff; font-size: .8rem; background: linear-gradient(transparent, rgba(12,42,77,.88)); }
.media-tile-wide { grid-column: span 8; grid-row: span 5; }
.media-tile-tall { grid-column: span 4; grid-row: span 5; }
.media-tile-half { grid-column: span 6; grid-row: span 4; }
.media-tile-third { grid-column: span 4; grid-row: span 4; }

.archive-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.status-card { padding: 28px; border: 1px solid #c7d5e3; background: #fff; }
.status-card strong { display: block; margin-bottom: 10px; color: var(--brand); font-size: 2rem; line-height: 1; }
.status-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.archive-gate { margin-top: 34px; padding: clamp(26px, 4vw, 42px); color: #fff; background: var(--brand); }
.archive-gate h2 { color: #fff; font-size: 1.5rem; }
.archive-gate p:last-child { margin-bottom: 0; }
.translation-demo { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 34px; background: #b8c9d9; }
.translation-column { min-height: 250px; padding: 26px; background: #fff; }
.translation-column h3 { padding-bottom: 12px; border-bottom: 3px solid var(--blue); }
.translation-column p { color: var(--muted); }
.archive-note { margin-top: 26px; padding: 20px 24px; border-left: 5px solid var(--orange); background: #fff6ee; }
.archive-banner { overflow: hidden; border: 1px solid var(--line); background: var(--blue-pale); }
.archive-banner img { width: 100%; max-height: 340px; object-fit: cover; }
.archive-reading { padding-top: 42px; }
.archive-language-nav { display: flex; flex-wrap: wrap; margin-bottom: 24px; gap: 10px; }
.archive-language-nav a {
  padding: 9px 16px; border: 1px solid var(--brand); border-radius: 999px;
  color: var(--brand); font-size: .86rem; font-weight: 700; text-decoration: none;
}
.archive-language-nav a:hover, .archive-language-nav a:focus-visible { color: #fff; background: var(--brand); }
.archive-disclaimer { margin-bottom: 34px; padding: 22px 26px; border: 1px solid #e5c580; border-left: 6px solid var(--orange); background: #fffaf0; }
.archive-disclaimer strong { display: block; margin-bottom: 7px; color: var(--brand); font-size: 1.02rem; }
.archive-disclaimer p { margin: 0; color: #4f5964; font-size: .92rem; }
.archive-list { border-top: 2px solid var(--brand); }
.archive-list-item { display: grid; grid-template-columns: 170px minmax(0, 1fr) auto; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); column-gap: 26px; }
.archive-list-item .archive-list-meta { grid-column: 1; grid-row: 1 / span 2; }
.archive-list-item h2 { grid-column: 2; grid-row: 1; }
.archive-list-item .source-language-title { grid-column: 2; grid-row: 2; }
.archive-list-item > .text-link { grid-column: 3; grid-row: 1 / span 2; }
.archive-list-item h2 { margin: 0; font-size: clamp(1.05rem, 1.6vw, 1.32rem); }
.archive-list-item h2 a { text-decoration: none; }
.archive-list-item h2 a:hover, .archive-list-item h2 a:focus-visible { color: var(--blue); text-decoration: underline; }
.archive-list-meta { display: flex; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: .82rem; gap: 9px; }
.source-language-title { margin: 8px 0 0; color: #7a828b; font-size: .82rem; line-height: 1.55; }
.archive-type { display: inline-flex; padding: 2px 9px; border-radius: 999px; color: var(--blue-dark); background: var(--blue-pale); font-size: .75rem; font-weight: 700; }
.pagination { display: flex; align-items: center; justify-content: center; margin-top: 46px; gap: 18px; }
.pagination-pages { display: flex; align-items: center; gap: 7px; }
.pagination a, .pagination .is-disabled {
  display: inline-grid; min-width: 40px; min-height: 40px; padding: 7px 10px; place-items: center;
  border: 1px solid #b8c9d9; color: var(--brand); background: #fff; text-decoration: none;
}
.pagination a[aria-current="page"] { color: #fff; border-color: var(--brand); background: var(--brand); }
.pagination .pagination-direction { min-width: 78px; }
.pagination .is-disabled { color: #9aa6b2; background: #f6f8fb; }
.pagination-gap { padding-inline: 4px; color: var(--muted); }
.archive-article { width: min(920px, calc(100% - 48px)); padding-top: clamp(64px, 8vw, 108px); padding-bottom: clamp(80px, 10vw, 130px); }
.archive-article-header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.archive-article-header h1 { max-width: none; font-size: clamp(2rem, 4.2vw, 3.6rem); overflow-wrap: anywhere; }
.archive-article-meta { display: flex; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: .84rem; gap: 12px 18px; }
.archive-article .archive-disclaimer { margin-top: 34px; }
.translation-panel { margin-top: 28px; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); }
.translation-panel h2 { font-size: clamp(1.25rem, 2.3vw, 1.75rem); }
.translation-primary { border-left: 6px solid var(--blue); background: var(--blue-pale); }
.translation-secondary { color: #5f6871; background: #fafafa; }
.translation-secondary h2 { color: #526273; }
.translation-label { margin-bottom: 8px; color: #7c8792; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.translation-boundary { padding-bottom: 20px; border-bottom: 1px solid #bdcde0; color: #4b5865; font-size: .9rem; }
.translated-content { color: #303942; line-height: 1.95; }
.translated-content p:last-child { margin-bottom: 0; }
.translation-secondary .archive-content { color: #5b646d; font-size: .96rem; }
.archive-content { padding: clamp(34px, 6vw, 66px) 0; color: #303942; font-family: "Noto Sans CJK SC", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Microsoft YaHei", sans-serif; font-size: clamp(1rem, 1.5vw, 1.08rem); line-height: 1.95; overflow-wrap: anywhere; }
.archive-content h2, .archive-content h3, .archive-content h4, .archive-content h5, .archive-content h6 { margin-top: 2.2em; margin-bottom: .8em; color: var(--brand); }
.archive-content h4 { padding-left: 14px; border-left: 4px solid var(--blue); font-size: 1.2rem; }
.archive-content p, .archive-content ul, .archive-content ol, .archive-content blockquote, .archive-content table, .archive-content figure { margin-top: 0; margin-bottom: 1.35em; }
.archive-content img { width: auto; max-width: 100%; height: auto; margin: 26px auto; }
.archive-content blockquote { padding: 18px 24px; border-left: 4px solid var(--blue); background: var(--blue-pale); }
.archive-content table { display: block; max-width: 100%; border-collapse: collapse; overflow-x: auto; }
.archive-content th, .archive-content td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.archive-file-link { display: inline-flex; padding: 9px 14px; border: 1px solid var(--brand); color: var(--brand); font-weight: 700; text-decoration: none; }
.archive-media-missing { display: block; margin: 18px 0; padding: 14px 18px; border: 1px dashed #a7b6c5; color: var(--muted); background: var(--soft); font-size: .86rem; }
.archive-source { padding-top: 28px; border-top: 1px solid var(--line); }
.archive-source p { color: var(--muted); font-size: .86rem; }

.quality-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,1.1fr); align-items: center; gap: clamp(44px,8vw,100px); }
.quality-image { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quality-image img { width: 100%; height: 330px; object-fit: cover; }
.announcement-grid, .contact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.announcement-grid article, .announcement-card, .contact-card { padding: clamp(26px,4vw,44px); border: 1px solid var(--line); background: #fff; }
.announcement-layout { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(28px, 6vw, 70px); }
.announcement-layout > img { width: 100%; border: 1px solid var(--line); }
.announcement-layout h3 { margin-top: 4px; }
.empty-state { display: grid; min-height: 130px; place-items: center; border: 1px dashed #a7b6c5; color: var(--muted); background: var(--soft); }
.empty-state p { margin: 0; }
.muted-card { background: var(--blue-pale); }
.contact-list { margin-top: 28px; }
.contact-card-layout { display: grid; grid-template-columns: minmax(0, 1fr) 220px; align-items: start; gap: 38px; }
.contact-qr { margin: 28px 0 0; text-align: center; }
.contact-qr img { width: 220px; border: 1px solid var(--line); }
.contact-qr figcaption { margin-top: 8px; color: var(--muted); font-size: .82rem; }
.legal-copy { color: #3b4650; font-size: 1.03rem; }
.legal-copy h2 { margin-top: 42px; font-size: 1.45rem; }
.legal-copy h2:first-child { margin-top: 0; }
.not-found { min-height: 60vh; padding-top: clamp(90px,14vw,160px); padding-bottom: 100px; text-align: center; }

.site-footer { padding: 68px 0 0; color: #fff; background: var(--brand); }
.footer-grid { display: grid; grid-template-columns: .85fr 1.3fr 1fr; width: min(1180px, calc(100% - 48px)); margin-inline: auto; gap: clamp(34px,6vw,76px); }
.footer-logo { width: 218px; max-height: 72px; margin-bottom: 22px; }
.site-footer h2 { margin-bottom: 14px; color: #fff; font-size: .82rem; letter-spacing: .12em; }
.site-footer p { color: #d8e4ef; font-size: .84rem; }
.site-footer a { color: #fff; }
.footer-bottom { width: min(1180px, calc(100% - 48px)); margin: 46px auto 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.22); color: #c8d7e5; font-size: .76rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .mobile-nav { display: block; }
}
@media (max-width: 900px) {
  .product-grid, .archive-summary, .latest-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .entry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split-panel, .quality-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-tile-wide, .media-tile-tall, .media-tile-half, .media-tile-third { grid-column: span 6; grid-row: span 4; }
  .archive-list-item { grid-template-columns: 140px minmax(0, 1fr); }
  .archive-list-item > .text-link { grid-column: 2; }
  .announcement-layout, .contact-card-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shell, .narrow, .header-inner, .breadcrumbs, .hero-copy, .footer-grid, .footer-bottom { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 116px; }
  .brand span { display: none; }
  .hero-video { min-height: 540px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(12,42,77,.94), rgba(12,42,77,.28)); }
  .hero-copy { margin-bottom: 42px; }
  .section-heading { display: block; }
  .section-heading > p, .section-heading > a { margin-top: 14px; }
  .product-grid, .entry-grid, .gallery-grid, .archive-summary, .translation-demo, .announcement-grid, .contact-grid, .latest-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-card-visual { height: 270px; }
  .facts-list > div, .contact-list > div, .single-fact > div { grid-template-columns: 1fr; gap: 5px; }
  .quality-image { grid-template-columns: 1fr; }
  .quality-image img { height: 280px; }
  .media-mosaic { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .media-tile-wide, .media-tile-tall, .media-tile-half, .media-tile-third { grid-column: auto; grid-row: auto; }
  .archive-list-item { display: block; padding: 24px 0; }
  .archive-list-item h2 { margin: 9px 0 14px; }
  .archive-list-item .source-language-title { margin-bottom: 14px; }
  .hero-product-actions { display: grid; grid-template-columns: 1fr; }
  .hero-product-actions .button { width: 100%; }
  .contact-qr img { width: min(220px, 100%); margin-inline: auto; }
  .pagination { align-items: stretch; gap: 8px; }
  .pagination-pages { max-width: 100%; overflow-x: auto; }
  .pagination a, .pagination .is-disabled { min-width: 36px; min-height: 38px; }
  .pagination .pagination-direction { min-width: 64px; font-size: .82rem; }
  .archive-article { width: min(100% - 28px, 920px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
