/* News Article Layout · D45 GEO-First (2026-04-17)
   覆盖政策动态文章公共样式，与 country.css 配合使用 */

.news-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 88px 24px 80px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--ink, #1d1d1f);
  line-height: 1.75;
}

.news-breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.news-breadcrumb a {
  color: var(--gold, #b07d2a);
  text-decoration: none;
}
.news-breadcrumb a:hover { text-decoration: underline; }

/* Header */
.news-header { margin-bottom: 36px; }
.news-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 20px;
  color: var(--ink, #1d1d1f);
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.news-meta strong { color: var(--ink, #1d1d1f); font-weight: 600; }
.news-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.news-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(176, 125, 42, 0.08);
  color: var(--gold, #b07d2a);
  border-radius: 4px;
  font-size: 13px;
}

/* TLDR · 核心答案块（D45 GEO 关键） */
.news-tldr {
  background: linear-gradient(135deg, rgba(176, 125, 42, 0.06), rgba(176, 125, 42, 0.02));
  border-left: 4px solid var(--gold, #b07d2a);
  padding: 22px 26px;
  margin: 0 0 36px;
  border-radius: 0 8px 8px 0;
}
.news-tldr-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold, #b07d2a);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-tldr-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink, #1d1d1f);
}
.news-tldr-body p:last-child { margin-bottom: 0; }

/* Body */
.news-body {
  font-size: 17px;
  line-height: 1.85;
}
.news-body h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
.news-body h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.news-body p { margin: 0 0 18px; }
.news-body strong { color: #000; font-weight: 600; }
.news-body a {
  color: var(--gold, #b07d2a);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-body a:hover { color: #8a5d1c; }
.news-body ul, .news-body ol { margin: 0 0 20px; padding-left: 24px; }
.news-body li { margin-bottom: 8px; }
.news-body blockquote {
  margin: 24px 0;
  padding: 14px 20px;
  border-left: 3px solid #d0d0d0;
  color: #555;
  font-style: italic;
  background: #fafafa;
}

/* Tables · D45 数据表格化 */
.news-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.news-body th, .news-body td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}
.news-body th {
  background: #f7f5f0;
  font-weight: 600;
  color: var(--ink, #1d1d1f);
  border-bottom: 2px solid var(--gold, #b07d2a);
}
.news-body tr:hover { background: #fafafa; }

/* Sources */
.news-sources {
  margin-top: 56px;
  padding: 28px;
  background: #f8f8f6;
  border-radius: 8px;
}
.news-sources h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin: 0 0 12px;
  border-bottom: none;
  padding-bottom: 0;
}
.news-sources-note {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
}
.news-sources-list {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.75;
}
.news-sources-list li { margin-bottom: 12px; }
.news-sources-list a {
  color: var(--blue, #1a3f6f);
  word-break: break-all;
}
.news-sources-meta { color: #888; font-size: 13px; }

/* CTA */
.news-cta {
  margin-top: 48px;
  padding: 28px 28px;
  background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
  color: #fff;
  border-radius: 12px;
  text-align: center;
}
.news-cta-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold, #b07d2a);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-cta-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.news-cta-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #d0d0d0;
  margin: 0 0 18px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.news-cta-desc strong { color: #fff; }
.news-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gold, #b07d2a);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}
.news-cta-btn:hover { background: #c89647; }
.news-cta-note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* CTA Mini · 文章中间轻量版 */
.news-cta-mini {
  margin: 36px 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-cta-mini-text {
  flex: 1;
}
.news-cta-mini-text .mini-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.news-cta-mini-text .mini-desc {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}
.news-cta-mini .news-cta-btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news-cta-mini {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 18px 20px;
  }
}

/* FAQ */
.news-faq {
  margin-top: 56px;
}
.news-faq h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
.news-faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 0;
  background: #fff;
}
.news-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.news-faq-item summary::-webkit-details-marker { display: none; }
.news-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold, #b07d2a);
  transition: transform 0.2s;
}
.news-faq-item[open] summary::after { content: '−'; }
.news-faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.news-faq-answer p:last-child { margin-bottom: 0; }

/* Related */
.news-related {
  margin-top: 48px;
  padding: 24px;
  background: #fafafa;
  border-radius: 8px;
}
.news-related h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin: 0 0 14px;
  border-bottom: none;
  padding-bottom: 0;
}
.news-related ul { margin: 0; padding-left: 22px; }
.news-related li { margin-bottom: 8px; }
.news-related a { color: var(--gold, #b07d2a); }

/* Author footer */
.news-footer-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #555;
}
.news-footer-author {
  margin-bottom: 20px;
}
.news-footer-author strong { color: var(--ink, #1d1d1f); font-size: 16px; }
.news-footer-author p { margin: 8px 0 0; line-height: 1.65; }
.news-footer-author-head { margin-bottom: 4px; }
.news-footer-author-role { font-family: 'Playfair Display', serif; font-size: 12px; letter-spacing: .08em; color: #b07d2a; font-weight: 500; }
.news-footer-author-bio { color: #555; font-size: 14px; }
.news-footer-author-meta { font-size: 12.5px; color: #888; margin-top: 10px !important; line-height: 1.7; }
.news-footer-author-meta a { color: #b07d2a; text-decoration: none; font-weight: 500; }
.news-footer-author-meta a:hover { text-decoration: underline; }

/* Author English name (byline + footer) */
.news-author-en { font-family: 'Playfair Display', serif; font-style: italic; font-size: .92em; color: #a1a1a6; font-weight: 400; margin-left: 2px; letter-spacing: .02em; }
.news-author-role { color: #6e6e73; font-size: .92em; font-weight: 400; margin-left: 4px; letter-spacing: .02em; }
.news-author-link { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(176,125,42,.35); padding-bottom: 1px; }
.news-author-link:hover { border-bottom-color: #b07d2a; }
.news-footer-disclaimer {
  font-size: 13px;
  color: #888;
  background: #fafafa;
  padding: 14px 18px;
  border-radius: 6px;
  line-height: 1.65;
}
.news-footer-disclaimer strong { color: var(--ink, #1d1d1f); }

/* Responsive */
@media (max-width: 768px) {
  .news-article { padding: 72px 18px 60px; }
  .news-title { font-size: 28px; }
  .news-body { font-size: 16px; }
  .news-body h2 { font-size: 22px; margin-top: 36px; }
  .news-body h3 { font-size: 18px; }
  .news-tldr { padding: 18px 20px; }
  .news-tldr-body { font-size: 16px; }
  .news-cta { padding: 28px 20px; }
  .news-cta-title { font-size: 20px; }
  .news-meta { gap: 8px 16px; font-size: 13px; }
  .news-body table { font-size: 14px; }
  .news-body th, .news-body td { padding: 10px 8px; }
}
