:root {
  --primary: #36BFB1;
  --primary-light: #EAF8F6;
  --primary-medium: #8CD9D2;
  --primary-dark: #2AA89C;
  --primary-deep: #1E8E84;
  --accent: #FF7A55;
  --accent-light: #FFF2ED;
  --accent-hover: #E8694A;
  --warning: #F5A623;
  --warning-light: #FEF5D7;
  --info: #5B9EF5;
  --info-light: #E3EFFE;
  --success: #34C79A;
  --success-light: #DDFBEF;
  --bg-white: #FFFFFF;
  --bg-light: #F6FCFB;
  --bg-section: #EEF8F7;
  --bg-warm: #FFFCF8;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5EDEB;
  --border-light: #F0F5F4;
  --shadow-card: 0 2px 8px rgba(54,191,177,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(54,191,177,.08);
  --shadow-lg: 0 8px 30px rgba(54,191,177,.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1200px;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { font-family: var(--font); color: var(--text-primary); background: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-shell > main { flex: 1 0 auto; }
.site-shell > .footer { flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font-family: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.top-bar { height: 36px; background: #F4FAF9; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); font-size: 13px; }
.top-bar-inner { display: flex; height: 36px; align-items: center; justify-content: space-between; }
.city-select { color: var(--text-primary); font-weight: 600; }
.top-links { display: flex; gap: 20px; }
.main-nav { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.nav-inner { display: flex; min-height: 72px; align-items: center; gap: 32px; }
.logo img { height: 56px; width: auto; }
.nav-menu { display: flex; flex: 1; min-width: 0; gap: 0; }
.nav-menu a { position: relative; padding: 10px 18px; border-radius: 6px; color: var(--text-secondary); font-size: 15px; font-weight: 500; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: var(--primary-light); }
.nav-menu a.active::after { content: ''; position: absolute; left: 50%; bottom: 2px; width: 24px; height: 3px; transform: translateX(-50%); border-radius: 2px; background: var(--primary); }
.search-box, .page-search { display: flex; align-items: center; gap: 8px; }
.search-box { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 24px; background: var(--bg-light); }
.search-icon { border: 0; padding: 0; background: transparent; color: var(--text-light); cursor: pointer; }
.search-box input { width: 160px; border: 0; outline: 0; background: transparent; font-size: 13px; }
.hero img { width: 100%; aspect-ratio: 2128 / 739; object-fit: cover; }
.hero-carousel { position: relative; width: 100%; aspect-ratio: 2128 / 739; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.quick-strip { padding: 20px 0; border-bottom: 1px solid var(--border-light); background: #fff; }
.quick-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--text-secondary); font-size: 14px; }
.btn-accent, .btn-primary, .btn-soft { display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; font-weight: 700; white-space: nowrap; }
.btn-accent { padding: 8px 18px; background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-primary { padding: 9px 18px; background: var(--primary); color: #fff; }
.btn-soft { margin-top: auto; padding: 9px 16px; background: var(--primary-light); color: var(--primary-dark); }
.content-section, .list-section, .detail-content { padding: 56px 0; }
.section-mint { background: var(--bg-section); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 32px; }
.section-title { margin: 0 0 6px; font-size: 26px; font-weight: 800; }
.section-subtitle { margin: 0; color: var(--text-light); font-size: 14px; }
.more-link { color: var(--primary); font-weight: 700; font-size: 14px; }
.city-tabs { display: flex; grid-column: 1 / -1; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.city-tab { min-width: 76px; padding: 9px 20px; border: 1px solid var(--border); border-radius: 22px; background: #fff; color: var(--text-secondary); text-align: center; font-weight: 700; }
.city-tab.active, .city-tab:hover { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 5px 14px rgba(54,191,177,.18); }
.card-grid, .hospital-grid, .doctor-grid, .promo-grid, .content-grid, .question-grid, .hospitals-grid, .doctors-grid, .services-grid, .promos-grid, .contents-grid, .questions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.doctor-grid, .doctors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid, .services-grid, .promo-grid, .promos-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { display: flex; flex-direction: column; height: 100%; min-height: 100%; overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-thumb { position: relative; aspect-ratio: 5 / 3; overflow: hidden; background: var(--primary-light); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 12px; left: 12px; z-index: 1; padding: 4px 10px; border-radius: 4px; background: rgba(234,248,246,.95); color: var(--primary-dark); font-size: 12px; font-weight: 800; }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.card h3 { margin: 0; color: var(--text-primary); font-size: 16px; font-weight: 800; line-height: 1.5; display: -webkit-box; min-height: 48px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card p { margin: 8px 0 0; color: var(--text-secondary); font-size: 13px; display: -webkit-box; min-height: 42px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; min-height: 34px; margin: 10px 0 0; overflow: hidden; align-content: flex-start; }
.tag-row.center { justify-content: center; }
.tag { display: inline-block; max-width: 100%; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tag-mint { background: var(--primary-light); color: var(--primary-dark); }
.tag-tiffany { background: var(--primary-light); color: var(--primary-dark); }
.tag-outline { border: 1px solid var(--border); color: var(--text-secondary); }
.card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-light); color: var(--text-light); font-size: 12px; }
.hospital-card-link { display: block; height: 100%; color: inherit; }
.hospital-card { min-height: 400px; }
.hospital-thumb { height: 190px; position: relative; overflow: hidden; background: var(--primary-light); }
.hospital-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hospital-card:hover .hospital-thumb img { transform: scale(1.04); }
.hospital-type-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; border-radius: 4px; background: rgba(234,248,246,.96); color: var(--primary-dark); font-size: 12px; font-weight: 800; }
.hospital-info { min-height: 210px; padding: 16px; }
.hospital-name { margin-bottom: 8px !important; min-height: 48px !important; }
.hospital-tags { max-height: 34px; min-height: 34px; flex-wrap: nowrap; }
.hospital-tags .tag { max-width: 138px; }
.hospital-meta { min-height: 32px; max-height: 32px; }
.hospital-bottom { min-height: 54px; }
.hospital-district { display: block; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.btn-consult { padding: 8px 20px; border-radius: 6px; font-size: 13px; }
.doctor-card { min-height: 360px; padding: 28px 18px 22px; align-items: center; text-align: center; }
.doctor-avatar { width: 110px; height: 110px; margin-bottom: 14px; overflow: hidden; border: 6px solid #fff; border-radius: 50%; background: var(--primary-light); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card h3 { min-height: auto; display: block; max-width: 100%; white-space: nowrap; text-overflow: ellipsis; }
.doctor-title, .doctor-hospital { margin: 6px 0 0; max-width: 100%; min-height: 20px; color: var(--primary); font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doctor-hospital { color: var(--text-secondary); font-weight: 500; }
.doctor-card .btn-soft { width: 100%; max-width: 220px; height: 44px; margin-top: auto; padding: 0 16px; border-radius: 6px; font-size: 15px; }
.service-card { min-height: 190px; align-items: center; padding: 28px 16px 24px; text-align: center; }
.service-icon { display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; margin-bottom: 10px; border-radius: 14px; background: var(--primary-light); color: var(--primary); font-size: 28px; font-weight: 900; }
.article-cat { margin-bottom: 6px; color: var(--primary); font-size: 12px; font-weight: 700; }
.price { margin-top: 12px; color: var(--accent); font-size: 22px; font-weight: 900; }
.qa-card { display: grid; grid-template-columns: 42px 1fr; gap: 14px; min-height: 130px; padding: 18px; }
.qa-mark { display: flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-weight: 900; }
.page-hero, .detail-hero, .page-title-section { padding: 56px 0 48px; background: linear-gradient(135deg, #36BFB1 0%, #2AA89C 45%, #1E8E84 100%); color: #fff; }
.page-title-section { position: relative; overflow: hidden; }
.page-title-section::before { content: ''; position: absolute; top: -80px; right: -40px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.06); }
.page-title-section::after { content: ''; position: absolute; bottom: -100px; left: 8%; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.04); }
.page-title-section .container { position: relative; z-index: 1; }
.page-hero h1, .detail-hero h1 { margin: 0 0 10px; font-size: 40px; font-weight: 900; }
.page-title-section h1 { margin: 0 0 10px; font-size: 36px; font-weight: 900; }
.page-hero p, .detail-hero p { max-width: 720px; margin: 0; opacity: .9; }
.page-hero-subtitle { max-width: 720px; margin: 0; color: rgba(255,255,255,.82); }
.page-hero-stats { display: flex; gap: 40px; margin-top: 28px; }
.page-hero-stat .num { display: block; color: #fff; font-size: 28px; font-weight: 900; line-height: 1.2; }
.page-hero-stat .label { display: block; margin-top: 4px; color: rgba(255,255,255,.65); font-size: 12px; }
.site-shell main > .breadcrumb { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--border-light); background: #fff; color: var(--text-secondary); }
.site-shell main > .breadcrumb a { color: var(--text-secondary); }
.site-shell main > .breadcrumb .sep { margin: 0 8px; color: var(--text-light); }
.site-shell main > .breadcrumb .current { color: var(--text-primary); }
.list-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 24px; color: var(--text-secondary); }
.listing-section { padding: 28px 0 56px; background: var(--bg-section); }
.listing-layout { display: flex; gap: 24px; align-items: flex-start; }
.listing-main { flex: 1; min-width: 0; }
.filter-sidebar { width: 240px; flex-shrink: 0; position: sticky; top: 100px; }
.filter-card { margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; }
.filter-group-title { padding: 14px 18px 10px; border-bottom: 1px solid var(--border-light); color: var(--text-primary); font-size: 14px; font-weight: 700; }
.filter-options { padding: 12px 18px 16px; }
.city-filter-grid, .district-filter-grid, .filter-check-group { display: flex; flex-wrap: wrap; gap: 8px; }
.city-filter-btn { padding: 6px 14px; border: 1px solid var(--border-light); border-radius: 20px; background: var(--bg-light); color: var(--text-secondary); font-size: 13px; font-weight: 600; }
.city-filter-btn.active, .city-filter-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.district-filter-btn { padding: 5px 12px; border-radius: 6px; background: var(--bg-light); color: var(--text-secondary); font-size: 12px; font-weight: 600; }
.district-filter-btn.active, .district-filter-btn:hover { background: var(--primary-light); color: var(--primary); }
.filter-radio-group { display: flex; flex-direction: column; gap: 2px; }
.filter-radio-item { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 13px; }
.filter-radio-item:hover, .filter-radio-item.active { background: var(--bg-light); color: var(--primary); }
.filter-radio-dot { width: 16px; height: 16px; border: 2px solid var(--border); border-radius: 50%; }
.filter-radio-item.active .filter-radio-dot { border-color: var(--primary); box-shadow: inset 0 0 0 3px #fff; background: var(--primary); }
.filter-check-item { display: flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 6px; background: var(--bg-light); color: var(--text-secondary); font-size: 12px; font-weight: 600; }
.filter-check-item.active, .filter-check-item:hover { background: var(--primary-light); color: var(--primary); }
.filter-check-box { width: 14px; height: 14px; border: 1px solid var(--border); border-radius: 3px; background: #fff; }
.filter-check-item.active .filter-check-box { border-color: var(--primary); background: var(--primary); }
.inline-filters { display: flex; gap: 10px; }
.inline-filters input, .page-search input { height: 42px; min-width: 160px; border: 1px solid var(--border); border-radius: 22px; padding: 0 16px; outline: 0; }
.inline-filters button, .page-search button { height: 42px; border: 0; border-radius: 22px; padding: 0 22px; background: var(--primary); color: #fff; font-weight: 700; }
.article-list-section { padding: 48px 0 56px; background: #fff; }
.article-search-panel { max-width: 1120px; margin: -8px auto 32px; text-align: center; }
.article-search-form { display: flex; width: min(760px, 100%); height: 56px; margin: 0 auto 18px; padding: 4px; border: 2px solid var(--border); border-radius: 30px; background: #fff; }
.article-search-form input { flex: 1; min-width: 0; border: 0; padding: 0 24px; color: var(--text-primary); font-size: 15px; outline: 0; }
.article-search-form button { width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--primary); color: #fff; font-size: 24px; font-weight: 900; }
.hot-search-row { display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 1120px; margin: 0 auto 20px; color: var(--text-light); font-size: 13px; white-space: nowrap; overflow: hidden; }
.hot-search-row a { display: inline-block; max-width: 150px; padding: 7px 14px; border: 1px solid var(--border); border-radius: 18px; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hot-search-row a:hover { border-color: var(--primary); color: var(--primary); }
.article-category-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.article-category-row a { min-width: 76px; padding: 9px 20px; border: 1px solid var(--border); border-radius: 22px; background: #fff; color: var(--text-secondary); font-weight: 700; }
.article-category-row a.active, .article-category-row a:hover { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(54,191,177,.18); }
.article-list-toolbar { max-width: 1120px; margin: 0 auto 24px; }
.article-sort-tabs { display: flex; gap: 12px; }
.article-sort-tabs a { padding: 8px 18px; border-radius: 8px; color: var(--text-secondary); font-weight: 700; }
.article-sort-tabs a.active, .article-sort-tabs a:hover { background: var(--primary-light); color: var(--primary); }
.doctor-filter-section { max-width: 1120px; margin: 0 auto 28px; padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.doctor-filter-row { display: flex; align-items: center; gap: 14px; min-height: 52px; border-bottom: 1px solid var(--border-light); }
.doctor-filter-row:last-child { border-bottom: 0; }
.doctor-filter-label { width: 64px; flex-shrink: 0; color: var(--text-secondary); font-weight: 800; }
.doctor-filter-pill { display: inline-flex; min-width: 76px; height: 32px; align-items: center; justify-content: center; border: 1px solid var(--border-light); border-radius: 18px; background: var(--bg-light); color: var(--text-secondary); font-size: 13px; font-weight: 700; white-space: nowrap; }
.doctor-filter-pill.active, .doctor-filter-pill:hover { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(54,191,177,.16); }
.qa-category-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 30px; padding: 18px 0; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.qa-category-row a { min-width: 76px; padding: 8px 18px; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--text-secondary); text-align: center; font-weight: 700; }
.qa-category-row a.active, .qa-category-row a:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 36px auto 0; }
.page-btn { display: inline-flex; min-width: 34px; height: 34px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--border); border-radius: 6px; background: #fff; color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.page-btn.active, .page-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.page-btn.disabled { cursor: not-allowed; opacity: .45; }
.contents-grid { max-width: 1120px; margin: 0 auto; }
.article-card { min-height: 386px; }
.article-card .card-thumb { aspect-ratio: 16 / 9; }
.article-card .card-bottom { color: var(--text-light); }
.article-list-section .promos-grid { max-width: 1120px; margin: 0 auto; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.qa-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.qa-content-list { display: flex; flex-direction: column; gap: 16px; }
.qa-content-list .qa-card { margin: 0; }
.qa-side-panel { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 110px; }
.qa-form-card { padding: 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.qa-form-card h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-primary); font-size: 18px; font-weight: 800; }
.qa-form-card form { display: flex; flex-direction: column; gap: 10px; }
.qa-form-card label { color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.qa-form-card input, .qa-form-card select, .qa-form-card textarea { width: 100%; border: 1px solid var(--border); border-radius: 6px; background: var(--bg-light); padding: 10px 12px; color: var(--text-primary); outline: 0; }
.qa-form-card textarea { min-height: 96px; resize: vertical; }
.qa-form-card input:focus, .qa-form-card select:focus, .qa-form-card textarea:focus { border-color: var(--primary); background: #fff; }
.qa-form-card button { height: 42px; border: 0; border-radius: 6px; background: var(--accent); color: #fff; font-weight: 800; cursor: pointer; }
.qa-hot-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.qa-hot-link:hover { color: var(--primary); }
.qa-hot-link:last-child { border-bottom: 0; }
.empty-box { padding: 36px; border: 1px dashed var(--border); border-radius: var(--radius-md); color: var(--text-light); text-align: center; }
.detail-section { padding: 32px 0 56px; background: var(--bg-light); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.content-panel, .side-panel { border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.content-panel { padding: 28px; }
.side-panel { position: sticky; top: 96px; padding: 22px; }
.article-header { padding: 40px 0 32px; border-bottom: 1px solid var(--border-light); background: #fff; }
.article-header h1 { margin: 0 0 20px; color: var(--text-primary); font-size: 32px; font-weight: 800; line-height: 1.4; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 16px; color: var(--text-secondary); font-size: 13px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-main { padding: 40px 44px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 140px; align-self: start; }
.sidebar-card { padding: 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.sidebar-card h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); font-size: 16px; font-weight: 800; }
.article-toc a, .side-article-link { display: block; color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.article-toc a { padding: 8px 10px; border-radius: 6px; }
.article-toc a:hover { background: var(--primary-light); color: var(--primary); }
.side-article-link { overflow: hidden; padding: 10px 0; border-bottom: 1px solid var(--border-light); white-space: nowrap; text-overflow: ellipsis; }
.side-article-link:last-child { border-bottom: 0; }
.detail-cover { width: 100%; max-height: 520px; margin-bottom: 24px; border-radius: var(--radius-md); object-fit: cover; }
.rich-content { color: var(--text-primary); font-size: 16px; line-height: 2; }
.rich-content img { height: auto; margin: 18px 0; border-radius: 8px; }
.breadcrumb-dark { margin: 0 0 22px; color: var(--text-secondary); }
.breadcrumb-dark a { color: var(--text-secondary); }
.doctor-detail-hero { padding: 18px 0 48px; background: linear-gradient(180deg, #f6fffe 0%, #fff 100%); }
.doctor-profile-panel { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 44px; align-items: center; max-width: 960px; margin: 0 auto; padding: 28px 0; }
.doctor-profile-avatar { width: 180px; height: 180px; overflow: hidden; border: 8px solid #fff; border-radius: 50%; background: var(--primary-light); box-shadow: 0 16px 38px rgba(0,0,0,.08); }
.doctor-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-profile-main h1 { margin: 0 0 10px; color: var(--text-primary); font-size: 34px; font-weight: 900; }
.doctor-profile-title { margin: 0 0 8px; color: var(--text-primary); font-size: 18px; font-weight: 800; }
.doctor-profile-special { margin-bottom: 10px; color: var(--primary); font-weight: 800; }
.doctor-profile-meta { margin: 6px 0; color: var(--text-secondary); }
.doctor-profile-rating { display: flex; align-items: center; gap: 10px; margin: 14px 0; color: var(--accent); font-weight: 900; }
.doctor-profile-rating .stars { letter-spacing: 2px; }
.doctor-profile-actions { display: flex; gap: 14px; margin-top: 18px; }
.btn-outline-primary { display: inline-flex; height: 44px; min-width: 130px; align-items: center; justify-content: center; border: 2px solid var(--primary); border-radius: 6px; color: var(--primary); font-weight: 800; }
.doctor-detail-tabs { position: sticky; top: 0; z-index: 20; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: #fff; }
.doctor-detail-tabs .container { display: flex; justify-content: center; gap: 42px; min-height: 54px; align-items: center; }
.doctor-detail-tabs a { height: 54px; color: var(--text-secondary); font-weight: 800; line-height: 54px; }
.doctor-detail-tabs a:hover { color: var(--primary); box-shadow: inset 0 -3px 0 var(--primary); }
.doctor-detail-section { padding: 36px 0 64px; background: #fff; }
.doctor-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; align-items: start; max-width: 1120px; }
.doctor-detail-main { min-width: 0; }
.doctor-block { padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border-light); scroll-margin-top: 78px; }
.doctor-block h2 { position: relative; margin: 0 0 22px; padding-left: 18px; color: var(--text-primary); font-size: 24px; font-weight: 900; }
.doctor-block h2:before { content: ""; position: absolute; left: 0; top: 5px; width: 4px; height: 24px; background: var(--primary); }
.doctor-schedule-location { margin: 0 0 18px; color: var(--text-secondary); font-size: 17px; }
.doctor-schedule-table { width: 100%; overflow: hidden; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; }
.doctor-schedule-table th, .doctor-schedule-table td { min-width: 82px; padding: 16px 12px; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); text-align: center; }
.doctor-schedule-table thead th { background: var(--primary); color: #fff; font-weight: 900; }
.doctor-schedule-table tbody th { background: #f4fbfa; color: var(--text-primary); font-weight: 900; }
.doctor-schedule-table tr:last-child th, .doctor-schedule-table tr:last-child td { border-bottom: 0; }
.doctor-schedule-table th:last-child, .doctor-schedule-table td:last-child { border-right: 0; }
.schedule-status { color: var(--text-light); font-weight: 800; }
.schedule-on { display: inline-flex; padding: 6px 12px; border-radius: 6px; background: var(--primary-light); color: var(--primary); }
.schedule-limit { display: inline-flex; padding: 6px 12px; border-radius: 6px; background: #fff0e8; color: var(--accent); }
.doctor-note { margin: 14px 0 0; color: var(--text-light); }
.doctor-review-summary { display: grid; grid-template-columns: 160px 1fr; gap: 26px; align-items: center; padding: 24px 28px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #f7fffe; }
.review-score strong { display: block; color: var(--primary); font-size: 58px; line-height: 1; }
.review-score span { color: var(--text-light); font-size: 15px; }
.review-bars { display: flex; flex-direction: column; gap: 18px; }
.review-bars div { display: grid; grid-template-columns: 72px 1fr 58px; gap: 14px; align-items: center; color: var(--text-secondary); font-weight: 700; }
.review-bars i { height: 10px; overflow: hidden; border-radius: 8px; background: var(--border-light); }
.review-bars em { display: block; height: 100%; border-radius: 8px; background: var(--primary); }
.doctor-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.doctor-related-grid .article-card { min-height: 330px; }
.doctor-booking-sidebar { position: sticky; top: 86px; }
.doctor-booking-card { padding: 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.doctor-booking-card h3 { margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); font-size: 18px; font-weight: 900; }
.doctor-booking-head { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.doctor-booking-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--primary-light); }
.doctor-booking-head strong, .doctor-booking-head span { display: block; }
.doctor-booking-head span { margin-top: 4px; color: var(--text-light); font-size: 12px; }
.doctor-booking-form { display: flex; flex-direction: column; gap: 12px; }
.doctor-booking-form label { color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.doctor-booking-form input, .doctor-booking-form select { display: block; width: 100%; height: 42px; margin-top: 6px; border: 1px solid var(--border); border-radius: 6px; background: #fff; padding: 0 12px; color: var(--text-primary); outline: 0; }
.doctor-booking-form input:focus, .doctor-booking-form select:focus { border-color: var(--primary); }
.doctor-booking-form button { height: 44px; border: 0; border-radius: 6px; background: var(--accent); color: #fff; font-weight: 900; cursor: pointer; }
.doctor-booking-status { min-height: 20px; margin: 0; color: var(--primary); font-size: 13px; }
.doctor-recommend-section { padding: 60px 0; background: var(--bg-light); }
.breadcrumb { margin-bottom: 12px; color: rgba(255,255,255,.8); font-size: 13px; }
.search-bucket { margin-bottom: 40px; }
.search-result-section { margin-bottom: 34px; }
.search-result-section:last-of-type { margin-bottom: 0; }
.search-result-title { margin: 0 0 16px; color: var(--text-primary); font-size: 22px; font-weight: 800; }
.search-result-grid { align-items: stretch; }
.footer { padding: 56px 0 0; background: #1A202C; color: rgba(255,255,255,.7); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand p { max-width: 360px; margin: 0; color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.7; }
.footer-col h4 { margin: 0 0 16px; color: #fff; font-size: 14px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.4); font-size: 13px; }
.footer-col a { transition: color .2s; }
.footer-col a:hover, .footer-bottom a:hover { color: var(--primary-medium); }
.footer-logo { height: 40px; width: auto; margin-bottom: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 18px 24px; color: rgba(255,255,255,.25); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.25); }
@media (max-width: 900px) {
  .top-bar { display: none; }
  .nav-inner { min-height: 64px; gap: 12px; overflow-x: auto; }
  .logo img { height: 46px; }
  .nav-menu { overflow-x: auto; }
  .nav-menu a { padding: 8px 12px; }
  .search-box { display: none; }
  .quick-inner, .section-header, .list-toolbar { align-items: flex-start; flex-direction: column; }
  .card-grid, .hospital-grid, .doctor-grid, .service-grid, .promo-grid, .hospitals-grid, .doctors-grid, .services-grid, .promos-grid, .contents-grid, .questions-grid { grid-template-columns: 1fr; }
  .listing-layout { flex-direction: column; }
  .filter-sidebar { position: static; width: 100%; }
  .qa-page-layout { grid-template-columns: 1fr; }
  .qa-side-panel { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr; }
  .page-hero h1, .detail-hero h1 { font-size: 30px; }
}

/* Prototype parity layer */
.top-bar-left { display: flex; align-items: center; gap: 6px; position: relative; }
.top-bar-left svg { width: 14px; height: 14px; color: var(--primary); }
.city-select { cursor: pointer; font-weight: 500; }
.city-select::after { content: ' \25BE'; font-size: 10px; color: var(--text-light); }
.city-dropdown { display: none; position: absolute; top: 100%; left: 0; width: 280px; margin-top: 4px; padding: 12px; border: 1px solid #E2E8F0; border-radius: 8px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 1000; }
.city-dropdown.show { display: block; }
.city-dropdown-title { margin-bottom: 8px; color: #8896A6; font-size: 12px; }
.city-dropdown-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.city-dropdown-btn { padding: 5px 12px; border: 1px solid #EEF2F7; border-radius: 16px; background: #F7F8FA; color: #4A5568; font-size: 12px; cursor: pointer; transition: all .2s; }
.city-dropdown-btn:hover { border-color: var(--primary-medium); color: var(--primary); }
.city-dropdown-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.hero { position: relative; overflow: hidden; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; display: flex; gap: 10px; transform: translateX(-50%); z-index: 10; }
.hero-dot { width: 28px; height: 4px; padding: 0; border: 0; border-radius: 2px; background: rgba(255,255,255,.45); cursor: pointer; transition: all .3s; }
.hero-dot.active { width: 40px; background: rgba(255,255,255,.95); }
.hero-arrows { position: absolute; top: 50%; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 16px; transform: translateY(-50%); pointer-events: none; z-index: 10; }
.hero-arrow { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.25); color: #fff; pointer-events: auto; cursor: pointer; transition: all .3s; }
.hero-arrow:hover { background: rgba(255,255,255,.5); }
.promos { padding: 56px 0; background: var(--bg-warm); }
.hospitals { padding: 56px 0; background: var(--bg-section); }
.doctors { padding: 56px 0; background: #fff; }
.articles { padding: 56px 0; background: #fff; }
.hospital-news { padding: 56px 0; background: var(--bg-section); }
.knowledge { padding: 56px 0; background: #fff; }
.qa { padding: 56px 0; background: var(--bg-section); }
.section-header .more-link svg { width: 14px; height: 14px; }
.promo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.promo-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.promo-card { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 390px; overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); transition: all .3s; }
.promo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.promo-badge { position: absolute; top: 12px; left: 0; z-index: 2; padding: 4px 12px 4px 10px; border-radius: 0 14px 14px 0; color: #fff; font-size: 12px; font-weight: 700; }
.promo-badge-hot { background: linear-gradient(90deg,#FF4D4F,#FF7875); }
.promo-badge-new { background: linear-gradient(90deg,var(--primary),var(--primary-medium)); }
.promo-badge-limit { background: linear-gradient(90deg,#F59E0B,#FBBF24); }
.promo-thumb { height: 140px; overflow: hidden; background: var(--primary-light); }
.promo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { display: flex; flex: 1; flex-direction: column; min-height: 0; padding: 16px; }
.promo-title { min-height: 42px; margin-bottom: 6px; color: var(--text-primary); font-size: 15px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.promo-hospital { margin-bottom: 10px; color: var(--text-light); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.promo-price { display: flex; gap: 8px; align-items: baseline; margin-bottom: 12px; }
.promo-price .now { color: var(--accent); font-size: 22px; font-weight: 900; letter-spacing: 0; }
.promo-price .now small { font-size: 13px; font-weight: 600; }
.promo-price .was { color: var(--text-light); font-size: 13px; text-decoration: line-through; }
.promo-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.promo-remain { color: var(--text-light); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-grab { display: inline-flex; align-items: center; justify-content: center; padding: 6px 16px; border-radius: 6px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 600; transition: all .2s; }
.btn-grab:hover { background: var(--accent-hover); }
.hospital-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.hospital-card { min-height: 390px; border-radius: var(--radius-md); }
.hospital-thumb { height: 160px; }
.badge-public { background: var(--info-light); color: #1E40AF; }
.badge-private { background: var(--warning-light); color: #92400E; }
.badge-chain { background: var(--success-light); color: #065F46; }
.hospital-info { display: flex; flex-direction: column; min-height: 230px; }
.hospital-name { font-size: 16px !important; font-weight: 600 !important; }
.hospital-tags { max-height: 30px; min-height: 30px; margin-bottom: 10px; flex-wrap: nowrap; }
.hospital-meta { max-height: 32px; min-height: 32px; margin-bottom: 10px; }
.hospital-bottom { margin-top: auto; }
.doctor-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.doctor-card { display: flex; min-height: 380px; flex-direction: column; align-items: center; padding: 28px 18px 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); text-align: center; transition: all .3s; }
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.doctor-name { max-width: 100%; margin: 0 0 4px; color: var(--text-primary); font-size: 17px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doctor-specialties { max-height: 68px; min-height: 68px; margin-bottom: 16px; overflow: hidden; }
.btn-book { display: flex; width: 100%; height: 40px; align-items: center; justify-content: center; margin-top: auto; border-radius: 6px; background: var(--primary-light); color: var(--primary-dark); font-size: 14px; font-weight: 500; transition: all .2s; }
.btn-book:hover { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(54,191,177,.25); }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-card { display: flex; min-height: 386px; flex-direction: column; overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); transition: all .3s; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-thumb { height: 170px; position: relative; overflow: hidden; background: var(--primary-light); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.article-title { min-height: 45px; margin: 0 0 6px; color: var(--text-primary); font-size: 15px; font-weight: 600; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-excerpt { min-height: 42px; margin: 0 0 12px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--text-light); font-size: 12px; }
.footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
.back-to-top { position: fixed; right: 32px; bottom: 32px; display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: var(--primary); color: #fff; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: all .3s; z-index: 99; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
@media (max-width: 900px) {
  .promo-grid, .hospital-grid, .doctor-grid, .article-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

/* Prototype list-page parity */
.articles-search { padding: 32px 0 0; }
.articles-search-wrapper { position: relative; display: flex; width: min(760px, 100%); height: 56px; align-items: center; margin: 0 auto; padding: 4px; border: 2px solid #dfecea; border-radius: 30px; background: var(--bg-white); box-shadow: 0 2px 6px rgba(31,41,55,.02); }
.articles-search-input { flex: 1; width: auto; height: 100%; min-width: 0; padding: 0 68px 0 24px; border: 0; border-radius: 28px; background: transparent; color: var(--text-primary); font-size: 15px; transition: all .2s; outline: 0; }
.articles-search-input::placeholder { color: #9aa7b3; }
.articles-search-wrapper:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(54,191,177,.1); }
.articles-search-input:focus { border-color: transparent; box-shadow: none; }
.articles-search-btn { position: absolute; top: 50%; right: 5px; display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: var(--primary); color: #fff; transform: translateY(-50%); transition: all .2s; cursor: pointer; }
.articles-search-btn svg { width: 20px; height: 20px; }
.articles-search-btn:hover { background: var(--primary-dark); box-shadow: 0 3px 10px rgba(54,191,177,.3); }
.search-hot-tags { display: flex; max-width: 1120px; align-items: center; justify-content: center; gap: 10px; margin: 18px auto 0; color: var(--text-light); font-size: 13px; white-space: nowrap; overflow: hidden; }
.search-hot-tag { display: inline-block; max-width: 158px; padding: 7px 18px; border: 1px solid var(--border); border-radius: 18px; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: all .2s; }
.search-hot-tag:hover { border-color: var(--primary); color: var(--primary); }
.category-tabs { padding: 28px 0 0; }
.category-tabs-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.category-tab { display: inline-flex; min-width: 76px; align-items: center; justify-content: center; padding: 9px 20px; border: 1px solid var(--border); border-radius: 22px; background: #fff; color: var(--text-secondary); font-weight: 700; transition: all .2s; }
.category-tab.active, .category-tab:hover { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(54,191,177,.18); }
.articles-content { padding: 16px 0 56px; background: #fff; }
.articles-content > .container > .sort-bar,
.article-list-toolbar.sort-bar { max-width: 1120px; margin: 0 auto 24px; padding: 24px 0 8px; border: 0; background: transparent; }
.sort-bar-left { display: flex; align-items: center; gap: 4px; color: var(--text-light); font-size: 14px; }
.sort-bar-left strong { color: var(--primary); font-weight: 600; }
.sort-options { display: flex; gap: 12px; }
.sort-option, .sort-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 8px 18px; border-radius: 8px; color: var(--text-secondary); font-weight: 700; transition: all .2s; }
.sort-option.active, .sort-option:hover, .sort-btn.active, .sort-btn:hover { background: var(--primary-light); color: var(--primary); }
.filter-section { padding: 28px 0; border-bottom: 1px solid var(--border-light); background: var(--bg-white); }
.filter-section.doctor-filter-section { max-width: none; margin: 0 auto 0; padding: 0 0 22px; }
.filter-row { display: flex; align-items: center; gap: 16px; min-height: 52px; border-bottom: 1px solid var(--border-light); }
.filter-row:last-child { border-bottom: 0; }
.filter-label { width: 64px; flex-shrink: 0; color: var(--text-secondary); font-weight: 700; }
.filter-options { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; }
.filter-pill { display: inline-flex; min-width: 76px; height: 32px; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid var(--border-light); border-radius: 18px; background: var(--bg-light); color: var(--text-secondary); font-size: 13px; font-weight: 700; white-space: nowrap; transition: all .2s; }
.filter-pill.active, .filter-pill:hover { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(54,191,177,.16); }
.doctor-listing { padding: 36px 0 56px; background: var(--bg-section); border-top: 3px solid var(--primary); }
.doctor-listing .sort-bar {
  max-width: none;
  width: 100vw;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-bottom: 24px;
  margin-left: calc(50% - 50vw);
  padding-top: 18px;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  padding-bottom: 18px;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}
.doctor-listing > .container > .doctor-grid { max-width: 1120px; margin: 0 auto; }
.listing-section .sort-bar { padding: 12px 20px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); }

/* Prototype detail-page parity */
.breadcrumb-list { display: flex; align-items: center; gap: 8px; }
.breadcrumb .separator { color: var(--border); }
.hospital-hero { padding: 44px 0; background: linear-gradient(180deg,#f6fffe 0%,#fff 100%); }
.hospital-hero-inner { display: grid; grid-template-columns: 420px minmax(0,1fr); gap: 36px; align-items: center; }
.hospital-hero .hero-thumb { overflow: hidden; border-radius: var(--radius-lg); background: var(--primary-light); box-shadow: var(--shadow-md); }
.hospital-hero .hero-thumb img { width: 100%; height: 260px; object-fit: cover; }
.hospital-hero .hero-info h1 { margin: 0 0 14px; color: var(--text-primary); font-size: 34px; font-weight: 900; line-height: 1.3; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hero-address { margin: 0 0 18px; color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.article-header, .news-header, .knowledge-header { padding: 42px 0 32px; border-bottom: 1px solid var(--border-light); background: linear-gradient(180deg,#F0FAF9 0%,#fff 100%); }
.article-header h1, .news-header h1, .knowledge-header h1 { max-width: 980px; margin: 0 0 18px; color: var(--text-primary); font-size: 34px; font-weight: 900; line-height: 1.35; }
.article-meta, .news-header-meta, .knowledge-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-secondary); font-size: 13px; }
.knowledge-meta-item, .article-meta-item, .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.detail-section { padding: 36px 0 56px; background: var(--bg-light); }
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 32px; align-items: start; }
.detail-main { min-width: 0; padding: 36px 42px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-card); }
.article-content { color: var(--text-primary); font-size: 16px; line-height: 2; }
.article-content h2 { margin: 28px 0 12px; color: var(--text-primary); font-size: 24px; font-weight: 900; scroll-margin-top: 90px; }
.article-content h3 { margin: 22px 0 10px; color: var(--text-primary); font-size: 20px; font-weight: 800; }
.article-content p { margin: 0 0 18px; }
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 140px; align-self: start; }
.detail-sidebar.detail-sidebar-sticky { top: 96px; max-height: calc(100vh - 116px); overflow-y: auto; overscroll-behavior: contain; }
.sidebar-card { padding: 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.sidebar-card h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-primary); font-size: 16px; font-weight: 800; }
.article-toc a { display: block; padding: 8px 10px; border-radius: 6px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.article-toc a:hover { background: var(--primary-light); color: var(--primary); }
.related-articles, .related-news-section, .related-knowledge, .related-section { padding: 56px 0; background: #fff; }
.doctor-related-grid.related-articles { padding: 0; background: transparent; }
.related-news-section { background: var(--bg-section); }
.related-knowledge { background: #fff; }
.qa-detail-main { padding: 32px 0 60px; background: var(--bg-section); }
.qa-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 28px; align-items: start; }
.qa-detail-content { display: flex; flex-direction: column; gap: 18px; }
.question-section, .answer-section, .qa-related-section, .qa-detail-sidebar .qa-form-card { padding: 24px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.question-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.q-badge, .q-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--primary); color: #fff; font-weight: 900; }
.q-badge { width: 36px; height: 36px; border-radius: 8px; font-size: 18px; }
.q-icon { width: 22px; height: 22px; border-radius: 6px; font-size: 12px; }
.question-title { margin: 0; color: var(--text-primary); font-size: 26px; font-weight: 900; line-height: 1.45; }
.question-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.9; }
.question-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; color: var(--text-light); font-size: 13px; }
.answer-title { margin: 0 0 16px; color: var(--text-primary); font-size: 22px; font-weight: 900; }
.answer-card { padding: 18px 0; border-top: 1px solid var(--border-light); }
.answer-card:first-of-type { border-top: 0; padding-top: 0; }
.answer-doctor { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.answer-doctor strong { color: var(--text-primary); font-size: 16px; }
.answer-doctor span { color: var(--primary); font-size: 13px; font-weight: 700; }
.answer-content { color: var(--text-secondary); font-size: 15px; line-height: 1.9; }
.qa-related-section { padding: 22px 24px; background: #fff; }
.related-title { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--text-primary); font-size: 18px; font-weight: 900; }
.related-item { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--border-light); }
.related-item a { color: var(--text-secondary); font-size: 14px; }
.related-item a:hover { color: var(--primary); }
.qa-detail-sidebar { position: sticky; top: 110px; }
.service-hero { padding: 56px 0 48px; background: linear-gradient(135deg,#36BFB1 0%,#2AA89C 40%,#1E8E84 100%); color: #fff; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; top: -80px; right: -40px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.06); }
.service-hero .container { position: relative; z-index: 1; }
.service-hero-info h1 { margin: 0 0 12px; font-size: 40px; font-weight: 900; line-height: 1.25; }
.service-hero-info .subtitle { max-width: 720px; margin: 0; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.8; }
.service-stats { display: flex; gap: 40px; margin-top: 28px; }
.service-stat .num { color: #fff; font-size: 28px; font-weight: 900; line-height: 1.2; }
.service-stat .label { margin-top: 4px; color: rgba(255,255,255,.65); font-size: 12px; }
.related-services { padding: 56px 0; background: #fff; }
@media (max-width: 900px) {
  .hospital-hero-inner, .detail-layout, .qa-detail-layout { grid-template-columns: 1fr; }
  .hospital-hero .hero-thumb img { height: auto; }
  .detail-main { padding: 24px; }
  .detail-sidebar, .qa-detail-sidebar { position: static; }
  .detail-sidebar-sticky { max-height: none; overflow: visible; }
}

/* Prototype home section parity */
.news-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.news-featured-link, .news-item-link, .knowledge-card, .qa-item-link { color: inherit; text-decoration: none; }
.news-featured { overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); transition: all .3s; }
.news-featured:hover, .knowledge-card:hover, .qa-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-featured-thumb { position: relative; height: 260px; overflow: hidden; background: var(--bg-section); }
.news-featured-thumb img, .news-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-featured:hover .news-featured-thumb img { transform: scale(1.05); }
.news-featured-badge { position: absolute; top: 16px; left: 16px; z-index: 1; padding: 4px 12px; border-radius: 4px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; }
.news-featured-body { padding: 24px; }
.news-featured-title { margin-bottom: 8px; color: var(--text-primary); font-size: 20px; font-weight: 800; line-height: 1.4; }
.news-featured-excerpt { margin-bottom: 14px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-featured-meta, .news-item-meta { display: flex; gap: 16px; color: var(--text-light); font-size: 13px; }
.news-list { display: grid; gap: 14px; }
.news-item { display: grid; grid-template-columns: 132px 1fr; gap: 14px; min-height: 104px; padding: 12px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); transition: all .3s; }
.news-item-thumb { height: 80px; overflow: hidden; border-radius: var(--radius-sm); background: var(--bg-section); }
.news-item-content { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.news-item-title { color: var(--text-primary); font-size: 15px; font-weight: 700; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.knowledge-card { display: flex; gap: 16px; min-height: 132px; padding: 20px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); transition: all .3s; }
.knowledge-icon { display: flex; width: 48px; height: 48px; flex: 0 0 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--primary-light); color: var(--primary); }
.knowledge-icon svg { width: 24px; height: 24px; }
.knowledge-content { min-width: 0; }
.knowledge-title { margin-bottom: 4px; color: var(--text-primary); font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.knowledge-desc { margin-bottom: 8px; color: var(--text-secondary); font-size: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.knowledge-links { display: flex; flex-wrap: wrap; gap: 8px; }
.knowledge-link { color: var(--primary); font-size: 12px; font-weight: 600; }
.qa-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.qa-form-box, .qa-list-box { padding: 28px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-white); }
.qa-form-box h3, .qa-list-box h3 { margin: 0 0 4px; color: var(--text-primary); font-size: 18px; font-weight: 700; }
.qa-form-box p { margin: 0 0 20px; color: var(--text-light); font-size: 13px; }
.qa-form-box .form-group { margin-bottom: 14px; }
.qa-form-box label { display: block; margin-bottom: 8px; color: var(--text-secondary); font-size: 13px; font-weight: 600; }
.qa-form-box .form-input { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-white); color: var(--text-primary); font-size: 14px; }
.qa-form-box input.form-input, .qa-form-box select.form-input { height: 42px; padding: 0 12px; }
.qa-form-box textarea.form-input { min-height: 108px; padding: 12px; resize: vertical; }
.btn-submit { width: 100%; height: 44px; border: 0; border-radius: var(--radius-sm); background: var(--primary); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-submit:hover { background: var(--primary-dark); }
.qa-list-box { display: flex; flex-direction: column; gap: 14px; }
.qa-list-box h3 { margin-bottom: 6px; }
.qa-item { padding: 16px 0; border-bottom: 1px solid var(--border-light); transition: all .3s; }
.qa-item-link:last-child .qa-item { border-bottom: 0; }
.qa-question { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; color: var(--text-primary); font-size: 15px; font-weight: 700; line-height: 1.5; }
.qa-q-badge { display: inline-flex; width: 20px; height: 20px; flex: 0 0 20px; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 800; }
.qa-answer { margin-bottom: 8px; color: var(--text-secondary); font-size: 13px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.qa-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--text-light); font-size: 12px; }

/* Current prototype parity fixes */
.hospital-card.prototype-hospital-card {
  display: flex;
  min-height: 470px;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.hospital-card.prototype-hospital-card .hospital-thumb { height: 216px; flex: 0 0 216px; }
.hospital-card.prototype-hospital-card .hospital-type-badge { top: 12px; left: 12px; border-radius: 4px; background: rgba(234,248,246,.96); color: var(--primary-dark); }
.hospital-card.prototype-hospital-card .hospital-info { display: flex; min-height: 254px; flex: 1; flex-direction: column; padding: 20px; }
.hospital-card.prototype-hospital-card .hospital-name { min-height: 28px !important; margin: 0 0 18px !important; font-size: 20px !important; font-weight: 800 !important; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hospital-card.prototype-hospital-card .hospital-tags { min-height: 34px; max-height: 68px; margin: 0 0 24px; flex-wrap: wrap; }
.hospital-card.prototype-hospital-card .hospital-tags .tag { max-width: 148px; }
.hospital-card.prototype-hospital-card .hospital-meta { min-height: 34px; margin-top: auto; margin-bottom: 18px; }
.hospital-card.prototype-hospital-card .hospital-bottom { display: flex; min-height: 60px; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.hospital-card.prototype-hospital-card .hospital-district::before { content: '⌖ '; color: var(--text-light); }
.hospital-card.prototype-hospital-card .btn-consult { min-width: 96px; height: 44px; padding: 0 18px; border-radius: 6px; background: var(--accent); color: #fff; font-weight: 700; }
.doctor-filter-section.prototype-filter-panel {
  max-width: none;
  width: 100vw;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  border: 0;
  background: #fff;
}
.doctor-filter-section.prototype-filter-panel .filter-row {
  min-height: 58px;
  padding: 0 0;
  border-bottom: 1px solid var(--border-light);
}
.doctor-filter-section.prototype-filter-panel .filter-label { width: 72px; color: var(--text-secondary); font-size: 16px; font-weight: 800; }
.doctor-filter-section.prototype-filter-panel .filter-options { gap: 12px; }
.doctor-filter-section.prototype-filter-panel .filter-pill { min-width: 84px; height: 34px; border-radius: 19px; background: var(--bg-light); }
.doctor-filter-section.prototype-filter-panel .filter-pill.active,
.doctor-filter-section.prototype-filter-panel .filter-pill:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(54,191,177,.16);
}
.hospital-hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 8px 0 12px; color: var(--text-light); font-size: 13px; }
.hospital-hero-rating strong { color: var(--warning); font-size: 18px; }
.hospital-hero-rating span { color: var(--warning); letter-spacing: 2px; }
.hospital-hero-phone { margin: -8px 0 16px; color: var(--primary); font-weight: 700; }
.hospital-hero-actions { display: flex; gap: 12px; }
.btn-outline-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 22px; border: 1px solid var(--primary); border-radius: 6px; background: #fff; color: var(--primary); font-weight: 800; }
.hospital-detail-tabs, .doctor-detail-tabs { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: #fff; }
.hospital-detail-tabs .container, .doctor-detail-tabs .container { display: flex; justify-content: center; gap: 46px; }
.hospital-detail-tabs a, .doctor-detail-tabs a { position: relative; padding: 18px 0; color: var(--text-secondary); font-weight: 800; }
.hospital-detail-tabs a:first-child, .hospital-detail-tabs a:hover, .doctor-detail-tabs a:first-child, .doctor-detail-tabs a:hover { color: var(--primary); }
.hospital-detail-tabs a:first-child::after, .doctor-detail-tabs a:first-child::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 32px; height: 3px; transform: translateX(-50%); border-radius: 3px; background: var(--primary); }
.hospital-detail-section { padding: 36px 0 60px; background: #fff; }
.hospital-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.hospital-detail-main { min-width: 0; }
.hospital-block { padding: 0 0 34px; margin-bottom: 30px; border-bottom: 1px solid var(--border-light); scroll-margin-top: 96px; }
.hospital-block h2 { position: relative; margin: 0 0 20px; padding-left: 14px; color: var(--text-primary); font-size: 24px; font-weight: 900; }
.hospital-block h2::before { content: ''; position: absolute; left: 0; top: 4px; width: 4px; height: 24px; border-radius: 3px; background: var(--primary); }
.hospital-stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.hospital-stats-grid div { min-height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: var(--radius-md); background: var(--bg-light); }
.hospital-stats-grid strong { color: var(--primary); font-size: 24px; font-weight: 900; }
.hospital-stats-grid span { margin-top: 8px; color: var(--text-light); font-size: 13px; }
.hospital-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hospital-service-card { min-height: 138px; padding: 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; }
.hospital-service-card span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; margin-right: 10px; border-radius: 9px; background: var(--primary-light); color: var(--primary); font-weight: 900; }
.hospital-service-card strong { color: var(--text-primary); font-size: 16px; }
.hospital-service-card p { margin: 12px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.8; }
.hospital-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.hospital-gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-sm); background: var(--primary-light); }
.hospital-gallery-grid img { width: 100%; height: 150px; object-fit: cover; }
.hospital-gallery-grid figcaption { position: absolute; left: 10px; bottom: 10px; padding: 3px 8px; border-radius: 4px; background: rgba(0,0,0,.42); color: #fff; font-size: 12px; }
.hospital-doctor-team .doctor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hospital-review-summary { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 24px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-light); }
.review-score strong { display: block; color: var(--primary); font-size: 56px; line-height: 1; }
.review-score span { color: var(--text-light); }
.review-bars div { display: grid; grid-template-columns: 70px 1fr 60px; gap: 12px; align-items: center; margin: 14px 0; color: var(--text-secondary); }
.review-bars i { height: 8px; overflow: hidden; border-radius: 8px; background: #edf4f3; }
.review-bars em { display: block; height: 100%; border-radius: inherit; background: var(--primary); }
.hospital-review-list { margin-top: 22px; }
.hospital-review-item { padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.hospital-review-item:last-child { border-bottom: 0; }
.hospital-review-head { display: flex; align-items: center; gap: 12px; color: var(--text-primary); }
.hospital-review-head strong { font-size: 16px; font-weight: 900; }
.hospital-review-head time { margin-left: auto; color: var(--text-light); font-size: 13px; }
.hospital-review-avatar { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #e9fbf7; color: var(--primary); font-weight: 900; }
.hospital-review-stars { margin-top: 10px; color: #ffae2b; letter-spacing: 2px; }
.hospital-review-item p { margin: 10px 0 0; color: var(--text-secondary); line-height: 1.8; }
.hospital-review-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hospital-review-tags span { padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-secondary); font-size: 12px; }
.hospital-review-tags span:first-child { border-color: transparent; background: #e9fbf7; color: var(--primary); }
.hospital-faq-list { display: grid; gap: 12px; }
.hospital-faq-list a { display: flex; gap: 10px; align-items: center; padding: 14px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); color: var(--text-secondary); }
.hospital-faq-list span { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 7px; background: var(--primary); color: #fff; font-weight: 900; }
.hospital-booking-sidebar { position: sticky; top: 110px; }
.hospital-booking-card { padding: 24px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.hospital-booking-card h3 { margin: 0 0 18px; color: var(--text-primary); font-size: 18px; font-weight: 900; }
.hospital-booking-card label { display: block; margin-bottom: 14px; color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.hospital-booking-card input, .hospital-booking-card select { display: block; width: 100%; height: 42px; margin-top: 8px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); }
.hospital-booking-card button { width: 100%; height: 44px; border: 0; border-radius: var(--radius-sm); background: var(--accent); color: #fff; font-weight: 800; cursor: pointer; }
.hospital-booking-card p { margin: 10px 0 0; color: var(--text-light); text-align: center; font-size: 12px; }
.hospital-booking-card .hospital-booking-status { min-height: 18px; color: var(--primary); font-weight: 700; }
.knowledge-section .contents-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.knowledge-list-card { display: grid; grid-template-columns: 56px 1fr; gap: 18px; min-height: 156px; padding: 24px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: #fff; transition: transform .25s, box-shadow .25s; }
.knowledge-list-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.knowledge-list-icon { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--primary-light); color: var(--primary); }
.knowledge-list-icon svg { width: 24px; height: 24px; }
.knowledge-list-title { margin: 0 0 8px; color: var(--text-primary); font-size: 17px; font-weight: 800; line-height: 1.4; }
.knowledge-list-desc { min-height: 44px; margin: 0 0 10px; color: var(--text-secondary); font-size: 13px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.knowledge-list-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.knowledge-list-tags span { color: var(--primary); font-size: 12px; font-weight: 700; }
.qa-list-card { grid-template-columns: 40px 1fr; min-height: 146px; border-radius: var(--radius-md); background: #fff; }
.qa-list-card h3 { min-height: auto; margin-bottom: 10px; -webkit-line-clamp: 1; }
.qa-list-card p { min-height: 42px; margin: 0 0 12px; color: var(--text-secondary); font-size: 13px; line-height: 1.7; -webkit-line-clamp: 2; }
.qa-list-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: var(--text-light); font-size: 12px; }
.qa-list-meta .qa-doctor { color: var(--text-secondary); font-weight: 700; }
.qa-list-meta .qa-category { margin-left: auto; padding: 3px 10px; border-radius: 14px; background: var(--primary-light); color: var(--primary-dark); font-weight: 700; }
.article-toc a.h2 { font-weight: 800; color: var(--text-primary); }
.article-toc a.h3, .article-toc a.p { padding-left: 18px; }
.related-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.related-card-grid .article-card { min-height: 372px; }
@media (max-width: 900px) {
  .news-layout, .knowledge-grid, .qa-layout { grid-template-columns: 1fr; }
}
