/* 成美整形官网共享样式  base: chengmei-homepage-elegant-v2 设计系统 */
:root {
  --ink: #292629;
  --text: #514b4e;
  --text-soft: #6b6467;
  --muted: #777074;
  --brand: #68436f;
  --brand-strong: #4d2f55;
  --brand-soft: #eee7ef;
  --sage: #5d746c;
  --sage-dark: #2f453f;
  --gold: #8b6f50;
  --gold-soft: #d0bea7;
  --paper: #fbfaf8;
  --surface: #ffffff;
  --surface-alt: #f1f5f3;
  --surface-warm: #f4f0ec;
  --line: #ded8d4;
  --line-strong: #cbc2bc;
  --dark: #292529;
  --shadow-sm: 0 8px 24px rgba(40, 36, 40, 0.06);
  --shadow-md: 0 18px 46px rgba(40, 36, 40, 0.1);
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; touch-action: manipulation; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid #9d74a7; outline-offset: 3px; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  min-height: 44px; padding: 9px 16px; color: #fff;
  background: var(--brand-strong); border-radius: 4px;
  transform: translateY(-180%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.wrap-narrow { width: min(860px, calc(100% - 48px)); margin: 0 auto; }

/* ---------- Header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(222, 216, 212, 0.88);
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: var(--header-height);
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 34px; align-items: center;
}
.brand { min-height: 48px; display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px;
  color: #fff; border: 1px solid var(--gold-soft); border-radius: 50%;
  background: var(--brand); font-family: Georgia, "Times New Roman", serif; font-size: 20px;
}
.brand strong, .brand small { display: block; }
.brand strong { color: var(--brand-strong); font-size: 18px; line-height: 1.35; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.links { display: flex; align-items: center; gap: 26px; color: #5b5558; font-size: 14px; white-space: nowrap; }
.links a { position: relative; min-height: 48px; display: inline-flex; align-items: center; transition: color 180ms ease; }
.links a::after {
  position: absolute; right: 0; bottom: 4px; left: 0; height: 2px;
  background: var(--brand); content: ""; opacity: 0; transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}
.links a:hover, .links a:focus-visible, .links a[aria-current="page"] { color: var(--brand-strong); }
.links a:hover::after, .links a:focus-visible::after, .links a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 15px; white-space: nowrap; }
.hotline { min-height: 44px; display: inline-flex; align-items: center; color: var(--brand-strong); font-size: 14px; font-weight: 700; }

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 26px; color: var(--brand-strong); border: 1px solid var(--brand);
  border-radius: 4px; background: transparent; font-size: 14px; font-weight: 700; line-height: 1.2;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.primary { color: #fff; border-color: var(--brand); background: var(--brand); box-shadow: 0 8px 20px rgba(104, 67, 111, 0.18); }
.button.primary:hover { border-color: var(--brand-strong); background: var(--brand-strong); box-shadow: 0 12px 28px rgba(77, 47, 85, 0.22); }
.button.secondary { background: rgba(255, 255, 255, 0.82); }
.button.secondary:hover { background: #fff; }

/* ---------- Section basics ---------- */
section { padding: 96px 0; }
.section-head { max-width: 760px; margin: 0 auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--gold); font-size: 12px; font-weight: 700; }
.kicker::before, .kicker::after { width: 28px; height: 1px; background: currentColor; content: ""; }
h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 0; color: var(--ink); font-family: "Songti SC", "SimSun", Georgia, serif; font-size: 40px; line-height: 1.35; font-weight: 700; }
h3 { margin-bottom: 10px; color: var(--ink); font-size: 21px; line-height: 1.45; }
.section-lead { max-width: 680px; margin: 20px auto 0; color: var(--text-soft); font-size: 17px; line-height: 1.85; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0; padding: 16px 0; list-style: none; font-size: 13px; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.breadcrumb a:hover { color: var(--brand-strong); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 64px 0 40px; background: var(--surface-warm); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0 0 12px; color: var(--brand-strong); font-family: "Songti SC", "SimSun", Georgia, serif; font-size: 38px; line-height: 1.3; }
.page-hero p { max-width: 720px; margin: 0; color: var(--text-soft); font-size: 17px; }

/* ---------- News list ---------- */
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.cat-tabs a {
  min-height: 40px; display: inline-flex; align-items: center; padding: 0 18px;
  color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; background: var(--surface); transition: all 180ms ease;
}
.cat-tabs a:hover { border-color: var(--brand); color: var(--brand-strong); }
.cat-tabs a[aria-current="true"] { color: #fff; background: var(--brand); border-color: var(--brand); }

.article-list { display: grid; gap: 22px; }
.article-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: stretch;
  padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
  box-shadow: var(--shadow-sm); transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.article-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-card .thumb { border-radius: 6px; overflow: hidden; background: var(--brand-soft); aspect-ratio: 16/10; }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-size: 12px; color: var(--muted); }
.article-card .tag { color: var(--brand); background: var(--brand-soft); border-radius: 4px; padding: 2px 10px; font-weight: 700; }
.article-card h3 { margin-bottom: 8px; font-size: 20px; }
.article-card h3 a:hover { color: var(--brand-strong); }
.article-card p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.article-card .more { display: inline-block; margin-top: 12px; color: var(--brand); font-size: 14px; font-weight: 700; }
.article-card .knowledge-thumb { display: grid; place-items: center; color: var(--brand); font-family: "Songti SC", "SimSun", serif; font-size: 22px; letter-spacing: 0.16em; }
.knowledge-empty { padding: 56px 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-align: center; }
.knowledge-empty h1, .knowledge-empty h2 { margin-bottom: 12px; }
.knowledge-empty p { margin: 0 0 24px; color: var(--text-soft); }

/* Sidebar */
.side-box { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); margin-bottom: 24px; }
.side-box h4 { margin: 0 0 16px; color: var(--ink); font-size: 16px; border-left: 3px solid var(--gold); padding-left: 10px; }
.side-box ul { margin: 0; padding: 0; list-style: none; }
.side-box li { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.side-box li:last-child { border-bottom: 0; }
.side-box li a:hover { color: var(--brand-strong); }
.side-box .rank { color: var(--gold); font-family: Georgia, serif; font-weight: 700; margin-right: 8px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; background: var(--surface);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand-strong); }
.pagination [aria-current="page"] { color: #fff; background: var(--brand); border-color: var(--brand); }

/* ---------- Article detail ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-body { max-width: 100%; }
.article-head h1 { margin: 0 0 16px; color: var(--ink); font-family: "Songti SC", "SimSun", Georgia, serif; font-size: 32px; line-height: 1.4; }
.article-head .meta { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 20px; margin-bottom: 28px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.article-content { font-size: 16px; line-height: 1.9; color: var(--text); }
.article-content h2 { margin: 40px 0 16px; font-size: 26px; scroll-margin-top: 90px; }
.article-content h3 { margin: 28px 0 12px; font-size: 20px; color: var(--brand-strong); }
.article-content p { margin: 0 0 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px; padding-left: 24px; }
.article-content li { margin-bottom: 8px; }
.article-content img { border-radius: 8px; margin: 24px 0; }
.article-content .figure-note { color: var(--muted); font-size: 13px; text-align: center; margin-top: -12px; }
.article-content blockquote { margin: 24px 0; padding: 18px 24px; border-left: 4px solid var(--gold); background: var(--surface-warm); color: var(--ink); }
.toc { padding: 20px 24px; margin: 0 0 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-alt); }
.toc strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 15px; }
.toc ol { margin: 0; padding-left: 20px; font-size: 14px; }
.toc li { margin-bottom: 6px; }
.toc a:hover { color: var(--brand-strong); }

/* FAQ */
.faq { margin-top: 40px; }
.faq details { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); margin-bottom: 12px; padding: 4px 20px; }
.faq summary { cursor: pointer; padding: 14px 0; font-weight: 700; color: var(--ink); font-size: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q "; color: var(--brand); font-family: Georgia, serif; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { margin: 14px 0; color: var(--text-soft); font-size: 15px; }

/* related / prev-next */
.related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.related h2 { font-size: 22px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-grid a { display: block; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); transition: all 200ms ease; }
.related-grid a:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.related-grid .tag { color: var(--brand); font-size: 12px; font-weight: 700; }
.related-grid h3 { margin: 8px 0 0; font-size: 16px; line-height: 1.5; }
.prev-next { display: flex; justify-content: space-between; gap: 16px; margin-top: 32px; font-size: 14px; }
.prev-next a { color: var(--brand); }
.prev-next a:hover { color: var(--brand-strong); }

/* CTA inline */
.cta-inline { margin: 40px 0; padding: 28px 32px; border-radius: 8px; background: var(--brand-soft); border: 1px solid #ddcfe0; text-align: center; }
.cta-inline p { margin: 0 0 16px; color: var(--brand-strong); font-size: 17px; font-weight: 600; }

/* ---------- Generic cards (project/doctor/about) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.service-card, .trust-card {
  min-height: 100%; padding: 30px 26px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--surface); box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.service-card:hover, .trust-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-index {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px;
  color: var(--brand); border: 1px solid #ddcfe0; border-radius: 8px; background: var(--brand-soft);
  font-family: Georgia, "Times New Roman", serif; font-size: 14px; font-weight: 700;
}
.service-card p, .trust-card p { margin-bottom: 0; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.trust-rule { width: 44px; height: 4px; margin-bottom: 20px; border-radius: 2px; background: var(--sage); }
.section-action { margin-top: 42px; text-align: center; }

/* doctor */
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.doctor-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.doctor-card .photo { aspect-ratio: 1/1; background: var(--brand-soft); display: grid; place-items: center; color: var(--brand); font-family: "Songti SC", serif; font-size: 48px; }
.doctor-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card .info { padding: 22px; }
.doctor-card h3 { margin-bottom: 4px; }
.doctor-card .title { color: var(--gold); font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.doctor-card p { margin: 0; color: var(--text-soft); font-size: 14px; }

/* ---------- Contact / footer ---------- */
.contact { color: #fff; background: var(--sage-dark); }
.contact h2 { color: #fff; }
.contact .kicker { color: #d7c3aa; }
.contact .section-lead { color: rgba(255, 255, 255, 0.8); }
.contact-actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.contact-actions .button { min-height: 54px; padding: 0 30px; font-size: 15px; }
.contact-actions .primary { color: var(--sage-dark); border-color: #fff; background: #fff; box-shadow: none; }
.contact-actions .primary:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.contact-actions .secondary { color: #fff; border-color: rgba(255, 255, 255, 0.56); background: transparent; }
.contact-actions .secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.address { max-width: 620px; margin: 36px auto 0; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.8; text-align: center; }
.consultation-form { max-width: 760px; margin: 36px auto 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 700; }
.form-field-wide { grid-column: 1 / -1; }
.form-field em { color: #f4d4cb; font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; color: var(--text);
  border: 1px solid rgba(255,255,255,0.42); border-radius: 5px; background: #fff;
  font: inherit; font-weight: 400; outline: none;
}
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: #d7c3aa; box-shadow: 0 0 0 3px rgba(215,195,170,0.2);
}
.privacy-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: rgba(255,255,255,0.82); font-size: 13px; line-height: 1.6; }
.privacy-check input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--brand); }
.privacy-check a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 24px; margin: 16px 0 0; text-align: center; font-size: 14px; }
.form-status[data-state="success"] { color: #d8f5e5; }
.form-status[data-state="error"] { color: #ffd8d1; }
.consultation-form button[disabled] { cursor: wait; opacity: 0.72; transform: none; }

footer { padding: 40px 0 28px; color: rgba(255, 255, 255, 0.68); background: #1f2e2a; font-size: 13px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 28px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-top h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.footer-top ul { margin: 0; padding: 0; list-style: none; }
.footer-top li { margin-bottom: 8px; }
.footer-top a:hover { color: #fff; }
.footer-brand strong { display: block; color: #fff; font-size: 16px; margin-bottom: 10px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}
@media (max-width: 900px) {
  .news-layout, .article-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .card-grid, .doctor-grid, .related-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
}
@media (max-width: 700px) {
  :root { --header-height: 68px; }
  .wrap, .wrap-narrow { width: calc(100% - 32px); }
  .hotline { display: none; }
  h2 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .article-head h1 { font-size: 26px; }
  .article-card { grid-template-columns: 1fr; }
  .article-card .thumb { aspect-ratio: 16/9; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .prev-next { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Doctor team (参考 cdcmzx zjtd 布局重构) ---------- */
.doc-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 44px auto 0; }
.doc-tabs button {
  min-height: 48px; padding: 0 30px; cursor: pointer;
  color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); font-size: 15px; font-weight: 700; font-family: inherit;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.doc-tabs button:hover { border-color: var(--brand); color: var(--brand-strong); }
.doc-tabs button[aria-selected="true"] { color: #fff; background: var(--brand); border-color: var(--brand); }

.doc-panel { margin-top: 40px; }
.doc-panel[hidden] { display: none; }
.doc-rows { display: grid; gap: 28px; }

.doc-row {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.doc-row:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.doc-photo {
  position: relative; min-height: 380px; display: grid; place-items: center;
  background: linear-gradient(160deg, #f0e7f1 0%, #e7dde9 60%, #ded1e0 100%);
  color: var(--brand-strong); overflow: hidden;
}
.doc-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.doc-photo .initial { font-family: "Songti SC", "SimSun", Georgia, serif; font-size: 96px; line-height: 1; opacity: 0.55; }
.doc-photo .badge {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  padding: 4px 14px; font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(77, 47, 85, 0.86); border-radius: 999px;
}

.doc-detail { padding: 34px 36px; }
.doc-name { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.doc-name strong { color: var(--ink); font-family: "Songti SC", "SimSun", Georgia, serif; font-size: 30px; line-height: 1.2; }
.doc-name .role { color: var(--gold); font-size: 15px; font-weight: 700; }
.doc-detail .creds { margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; }
.doc-detail .creds li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.doc-detail .creds li::before { position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border: 1.5px solid var(--gold); border-radius: 50%; content: ""; }

.doc-skills-label { margin: 22px 0 12px; color: var(--brand-strong); font-size: 15px; font-weight: 700; }
.doc-skills { display: flex; flex-wrap: wrap; gap: 10px; }
.doc-skills span {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 16px;
  color: var(--brand-strong); background: var(--brand-soft); border: 1px solid #ddcfe0;
  border-radius: 6px; font-size: 13px; font-weight: 600;
}
.doc-cta { display: flex; gap: 12px; margin-top: 26px; }

@media (max-width: 820px) {
  .doc-row { grid-template-columns: 1fr; }
  .doc-photo { min-height: 240px; }
  .doc-photo img { position: relative; height: 240px; }
  .doc-detail { padding: 26px 22px; }
  .doc-name strong { font-size: 26px; }
  .doc-cta { flex-direction: column; }
  .doc-cta .button { width: 100%; }
}
