:root {
  --ink: #172b2f;
  --muted: #5d7075;
  --subtle: #eef5f3;
  --line: #d8e6e3;
  --brand: #168577;
  --brand-dark: #0f665d;
  --blue: #155f78;
  --amber: #b76510;
  --danger: #b94138;
  --paper: #ffffff;
  --bg: #f7fbfa;
  --shadow: 0 14px 34px rgba(20, 55, 58, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 230, 227, .92);
  background: rgba(247, 251, 250, .96);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--brand);
}

.self-check-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 22px 34px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.check-intro {
  padding-top: 16px;
}

.eyebrow,
.step-label,
.doctor-label {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--subtle);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.24;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.value-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.value-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.value-list strong {
  color: var(--blue);
}

.value-list span {
  color: var(--muted);
}

.check-panel,
.result-main,
.brief-panel,
.doctor-card,
.boundary-band,
.feature-card,
.guideline-card,
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.check-panel {
  padding: 24px;
}

.panel-head p,
.section-head p,
.brief-panel p,
.doctor-copy p,
.doctor-card p,
.boundary-band p {
  margin: 10px 0 0;
  color: var(--muted);
}

.condition-tabs {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.condition-tab {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.condition-tab span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.condition-tab.active {
  border-color: var(--brand);
  background: #edf8f5;
  color: var(--brand-dark);
}

.check-form {
  margin-top: 24px;
}

.question-list {
  display: grid;
  gap: 18px;
}

.question {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.question:first-child {
  border-top: 0;
  padding-top: 0;
}

.question-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.option-row {
  display: grid;
  gap: 8px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  cursor: pointer;
  color: var(--muted);
}

.option input {
  margin-top: 5px;
  accent-color: var(--brand);
}

.option span {
  color: var(--ink);
}

.option.selected,
.option:has(input:checked) {
  border-color: var(--brand);
  background: #edf8f5;
}

.photo-field {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.photo-field label {
  display: block;
  font-weight: 800;
}

.photo-field p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.photo-field input {
  width: 100%;
}

.photo-status {
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
}

.noscript-warning {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 14px 22px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #8a4b16;
  background: #fff7ed;
}

.form-actions,
.brief-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(22, 133, 119, .18);
}

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

.btn.subtle {
  border-color: var(--line);
  color: var(--muted);
  background: #fbfdfc;
}

.result-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 34px;
}

.photo-difference {
  padding-top: 18px;
}

.photo-feature-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.phone-mock {
  max-width: 320px;
  min-height: 520px;
  padding: 18px;
  border-radius: 32px;
  background: #172b2f;
  box-shadow: 0 24px 54px rgba(23, 43, 47, .18);
}

.phone-top {
  width: 88px;
  height: 8px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
}

.phone-screen {
  min-height: 460px;
  border-radius: 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(22, 133, 119, .18), rgba(21, 95, 120, .16)),
    #f7fbfa;
}

.scan-frame {
  width: 210px;
  aspect-ratio: 1.12;
  border: 3px solid var(--brand);
  border-radius: 24px;
  position: relative;
  background:
    linear-gradient(90deg, transparent 48%, rgba(22, 133, 119, .28) 49%, transparent 52%),
    linear-gradient(180deg, #ffffff, #edf8f5);
}

.scan-frame::before,
.scan-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(21, 95, 120, .18);
}

.scan-frame::before {
  left: 28px;
  right: 28px;
  bottom: 38px;
  height: 28px;
}

.scan-frame::after {
  left: 78px;
  right: 78px;
  bottom: 78px;
  height: 86px;
}

.scan-caption {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

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

.feature-card {
  padding: 18px;
  box-shadow: none;
}

.feature-card strong,
.feature-card span {
  display: block;
}

.feature-card strong {
  color: var(--brand-dark);
  font-size: 18px;
}

.feature-card span {
  margin-top: 8px;
  color: var(--muted);
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.result-main,
.brief-panel {
  padding: 24px;
}

.result-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.risk-badge {
  display: inline-flex;
  min-width: 76px;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf8f5;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.risk-badge.middle {
  background: #fff4e6;
  color: var(--amber);
}

.risk-badge.high {
  background: #fff0ef;
  color: var(--danger);
}

.result-cards {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.result-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.result-card h3 {
  margin-bottom: 10px;
}

.result-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.result-card li {
  margin: 6px 0;
}

.brief-panel {
  position: sticky;
  top: 78px;
}

.brief-text {
  margin: 18px 0 0;
  max-height: 420px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
  color: #33494d;
  font-size: 13px;
  line-height: 1.6;
}

.miniapp-next {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--blue);
  background: #eef8fb;
  border-radius: 8px;
}

.home-miniapp-qr,
.miniapp-qr-inline {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-miniapp-qr {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.miniapp-qr-inline {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  box-shadow: none;
}

.home-miniapp-qr img,
.miniapp-qr-inline img,
.miniapp-card-qr img {
  width: 100%;
  max-width: 150px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.miniapp-card-qr {
  margin: 18px auto 0;
  display: grid;
  max-width: 220px;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.qr-title {
  color: var(--ink);
  font-weight: 900;
}

.qr-desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.miniapp-next strong,
.miniapp-next span,
.miniapp-next a {
  display: block;
}

.miniapp-next span {
  margin-top: 4px;
  color: var(--muted);
}

.text-link {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px;
}

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

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

.symptom-grid button {
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.symptom-grid button:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #edf8f5;
}

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

.guideline-card {
  padding: 20px;
  box-shadow: none;
}

.guideline-card span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.guideline-card h3 {
  margin-top: 14px;
}

.guideline-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.guideline-card:hover,
.card:hover {
  border-color: var(--brand);
}

.article-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 52px;
}

.article-figure {
  margin: 22px 0;
}

.article-figure img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.inline-links {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 18px 0;
}

.inline-links ul {
  margin: 8px 0 0;
}

.article-search {
  max-width: 860px;
  margin: 0 22px 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.article-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfdfc;
}

.article-search .search-hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.conditions-index-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.card {
  display: block;
  padding: 20px;
}

.card h3 {
  margin-top: 10px;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--subtle);
  font-size: 13px;
  font-weight: 900;
}

.notice {
  background: #fffaf0;
  box-shadow: none;
}

.product-hero {
  background: #edf8f5;
  border-bottom: 1px solid var(--line);
}

.crumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.miniapp-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 22px;
  align-items: center;
}

.steps-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.steps-list div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list strong {
  color: var(--brand-dark);
}

.steps-list span {
  color: var(--muted);
}

.miniapp-card {
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-card {
  padding: 24px;
  border-radius: 10px;
  border: 2px solid var(--brand);
  background: #f7fbfa;
  text-align: center;
}

.search-card span,
.search-card strong,
.search-card p {
  display: block;
}

.search-card span {
  color: var(--muted);
}

.search-card strong {
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 30px;
}

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

.guideline-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.source-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.source-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef8fb;
  font-size: 13px;
  font-weight: 900;
}

.guide-source-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.guide-source-card {
  padding: 20px;
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.guide-source-card h3 {
  margin-top: 10px;
}

.guide-source-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.guide-source-card .source-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.doctor-card {
  padding: 24px;
  border-left: 6px solid var(--brand);
}

.doctor-card h3 {
  margin-top: 14px;
  font-size: 30px;
}

.doctor-title {
  color: var(--blue);
  font-weight: 900;
}

.boundary-note {
  font-size: 14px;
}

.boundary-band {
  padding: 24px;
  border: none;
  border-left: 6px solid var(--amber);
  border-radius: 0;
  background: #fffaf0;
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px;
  color: var(--muted);
  background: #fff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--brand);
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .self-check-shell,
  .result-grid,
  .split-section,
  .photo-feature-layout,
  .guideline-hero,
  .miniapp-entry {
    grid-template-columns: 1fr;
  }

  .brief-panel {
    position: static;
  }

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

  .guideline-grid,
  .grid.three,
  .grid.four,
  .conditions-index-grid {
    grid-template-columns: 1fr;
  }

  .phone-mock {
    max-width: none;
    min-height: 360px;
  }

  .phone-screen {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 10px 16px;
  }

  .brand {
    font-size: 16px;
  }

  .self-check-shell,
  .section,
  .result-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .lead {
    font-size: 16px;
  }

  .check-panel,
  .result-main,
  .brief-panel,
  .doctor-card,
  .boundary-band {
    padding: 18px;
  }

  .condition-tabs,
  .symptom-grid,
  .photo-feature-grid,
  .home-miniapp-qr,
  .miniapp-qr-inline {
    grid-template-columns: 1fr;
  }

  .value-list div,
  .result-top,
  .steps-list div {
    grid-template-columns: 1fr;
  }

  .form-actions .btn,
  .brief-actions .btn {
    width: 100%;
  }
}

/* Symptom chip links */
.symptom-chip {
  display: block;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.symptom-chip:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #edf8f5;
}

/* Center content in sections */
.section > .section-head {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
}

.section > .section-head h2 {
  margin: 0 auto;
}

.section > .section-head p {
  margin: 10px auto 0;
  max-width: 720px;
}

/* Center symptom grid */
.symptom-grid {
  max-width: 960px;
  margin: 0 auto;
  justify-items: center;
}

/* Center guideline grid */
.guideline-grid {
  max-width: 960px;
  margin: 0 auto;
}

/* Center guide source list */
.guide-source-list {
  max-width: 860px;
  margin: 8px auto 0;
}

/* Center conditions index grid */
.conditions-index-grid {
  max-width: 960px;
  margin: 0 auto;
}

/* Center grid layouts */
.grid.three,
.grid.four {
  max-width: 960px;
  margin: 0 auto;
}

/* Fix guideline hero for better alignment */
.guideline-hero {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 0 22px;
}

/* Ensure article content is centered */
.article-page > h1,
.article-page > .lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.article-page .article-content {
  max-width: 860px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .section > .section-head {
    text-align: left;
  }
  
  .symptom-grid,
  .guideline-grid,
  .guide-source-list,
  .conditions-index-grid,
  .grid.three,
  .grid.four {
    max-width: none;
  }
}
/* Article content centering */
.article-content {
  max-width: 860px;
  margin: 0 auto;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content p,
.article-content ul,
.article-content ol,
.article-content .article-lead {
  max-width: 100%;
}

.article-content .grid.three,
.article-content .grid.four {
  max-width: 100%;
  margin: 0 auto;
}

/* Breadcrumb centering */
.article-page .breadcrumb {
  max-width: 860px;
  margin: 0 auto 20px;
}

/* Article figure centering */
.article-figure {
  max-width: 860px;
  margin: 22px auto;
}

/* Article sidebar adjustment */
.article-sidebar {
  max-width: 860px;
  margin: 0 auto;
}

/* Author block centering */
.article-page .author-block {
  max-width: 860px;
  margin: 32px auto;
}

/* Disclaimer centering */
.article-page .disclaimer {
  max-width: 860px;
  margin: 24px auto;
}

/* Article CTA centering */
.article-cta {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Article section spacing */
.article-section {
  margin-bottom: 28px;
}

.article-section h2 {
  margin-bottom: 16px;
}

.article-section p {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .article-content,
  .article-page .breadcrumb,
  .article-figure,
  .article-sidebar,
  .article-page .author-block,
  .article-page .disclaimer,
  .article-cta {
    max-width: 100%;
  }
}
/* Condition page centering (.article class) */
main.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 22px 52px;
}

main.article .crumb {
  max-width: 100%;
  margin-bottom: 16px;
}

main.article h1 {
  max-width: 100%;
}

main.article .lead {
  max-width: 100%;
}

main.article .article-figure {
  max-width: 100%;
  margin: 22px auto;
}

main.article .article-figure img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

main.article .article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

main.article h2 {
  margin-top: 28px;
  margin-bottom: 12px;
}

main.article ul,
main.article ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

main.article .card.notice {
  max-width: 100%;
  margin-top: 32px;
}

main.article .author-block {
  max-width: 100%;
  margin-top: 40px;
}

main.article .card.disclaimer {
  max-width: 100%;
  margin-top: 24px;
}

main.article .inline-links {
  max-width: 100%;
  margin: 28px 0;
}

/* Responsive */
@media (max-width: 980px) {
  main.article {
    max-width: 100%;
  }
}