/* ========================================
   潮州刑事律师网 - 手机版专用样式
   设计原则：小屏单列、大按钮、底部固定操作栏
   ======================================== */

:root {
  --color-primary: #8b1a1a;
  --color-primary-dark: #6b0f0f;
  --color-primary-light: #a52a2a;
  --color-gold: #c9a96e;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #a88a4e;
  --color-surface: #ffffff;
  --color-surface-alt: #faf6f0;
  --color-border: #e8dfd2;
  --color-text: #2c1810;
  --color-text-muted: #5a4030;
  --color-text-light: #8a7060;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(139, 26, 26, 0.08);
  --shadow-md: 0 4px 12px rgba(139, 26, 26, 0.12);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-surface-alt);
  padding-bottom: calc(72px + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; }
a:active { opacity: 0.7; }

/* ===== 顶部迷你条 ===== */
.m-topbar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.m-topbar-title {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.m-topbar-switch {
  color: var(--color-gold-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 100px;
}

/* ===== 实时咨询动态（滚动通知条） ===== */
.m-notify {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #fff8e7 0%, #fffbf0 100%);
  border-bottom: 1px solid #f0d9a8;
  padding: 0.6rem 0.9rem;
  overflow: hidden;
  position: relative;
  z-index: 5;          /* 浮在 .m-cta 之上，避免被 CTA 按钮遮住 */
  min-height: 40px;
  box-shadow: 0 2px 6px rgba(212, 56, 13, 0.08);
}

.m-notify-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d4380d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.m-notify-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: m-notify-pulse 1.4s ease-in-out infinite;
}

@keyframes m-notify-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.m-notify-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 22px;
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.m-notify-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: 0.82rem;
  color: #5a2820;
  line-height: 22px;
  /* v5: JS 设置 animation，CSS 只保留 will-change 让浏览器走 compositor */
  will-change: transform;
}

.m-notify-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.m-notify-user {
  color: #8b1a1a;
  font-weight: 600;
}

.m-notify-time {
  color: #a86b3a;
  font-size: 0.75rem;
}

.m-notify-action {
  color: #5a2820;
}

.m-notify-topic {
  color: #8b1a1a;
  font-weight: 700;
}

/* v5: CSS 动画 - 由 JS 注入 animation 属性
   从 0 移动到 -50%（50% = 一份内容物的宽度），linear 匀速，infinite 无缝循环
   因为 DOM 是双份复制，50% 恰好是一份，第二份无缝接上 */
@keyframes m-notify-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* iOS 减弱动画偏好支持 */
@media (prefers-reduced-motion: reduce) {
  .m-notify-track { animation: none !important; transform: none !important; }
  .m-notify-dot   { animation: none; }
}

/* ===== Hero（政务门户风） ===== */
.m-hero {
  background: linear-gradient(160deg, #2c1810 0%, #5a2820 55%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 2rem 1.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.m-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.m-hero-emblem {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.m-hero-emblem svg {
  width: 100%;
  height: 100%;
}
.m-hero-title {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.m-hero-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.6rem;
}
.m-hero-divider::before,
.m-hero-divider::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.6), transparent);
}
.m-hero-divider span {
  font-size: 0.7rem;
  color: var(--color-gold-light);
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.m-hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  opacity: 0.82;
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
}
.m-hero-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  line-height: 1.75;
  opacity: 0.9;
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.m-hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.85rem 0.5rem;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
  backdrop-filter: blur(10px);
}
.m-hero-stat {
  text-align: center;
}
.m-hero-stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}
.m-hero-stat-label {
  font-size: 0.72rem;
  opacity: 0.85;
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}
.m-hero-regions {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.m-hero-regions .dot {
  color: var(--color-gold);
  opacity: 0.6;
}

/* ===== 核心 CTA 按钮区 ===== */
.m-cta {
  background: #fff;
  padding: 1.25rem 1rem;
  margin: 0.75rem 0.75rem 0.75rem;   /* 去掉 -1.25rem 负值，避免盖住 .m-notify */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  border: 1px solid var(--color-border);
}
.m-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
  margin-bottom: 0.6rem;
  border: none;
  cursor: pointer;
  text-align: center;
  min-height: 48px;
}
.m-cta-btn:last-child { margin-bottom: 0; }
.m-cta-btn:active { transform: scale(0.98); }
.m-cta-btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}
.m-cta-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: m-shine 3s infinite;
}
@keyframes m-shine {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}
.m-cta-btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.m-cta-btn-wechat {
  background: #07c160;
  color: #fff;
}
.m-cta-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== 通用版块 ===== */
.m-section {
  background: #fff;
  margin: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.m-section-header {
  padding: 1.1rem 1.1rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.m-section-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-primary) 100%);
  border-radius: 0 2px 2px 0;
}
.m-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.15rem 0.7rem;
  letter-spacing: 0.04em;
}
.m-section-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin: 0 0 0 0.7rem;
}
.m-section-body { padding: 0.85rem 1.1rem 1.1rem; }

/* ===== 服务领域（4项） ===== */
.m-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.m-service {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 0.6rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}
.m-service:active { transform: scale(0.97); }
.m-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.4;
}
.m-service-numeral {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}
.m-service-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 0.4rem;
  color: var(--color-primary);
}
.m-service-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}
.m-service-desc {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.45;
}

/* ===== 成功案例摘要 ===== */
.m-cases {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: m-cases-scroll 30s linear infinite;
  will-change: transform;
}
@keyframes m-cases-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.m-case {
  border-left: 3px solid var(--color-primary);
  background: var(--color-surface-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 0.85rem;
}
.m-case-tags {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.m-case-tag {
  font-size: 0.68rem;
  color: var(--color-primary);
  background: rgba(139, 26, 26, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 500;
}
.m-case-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.3rem 0;
  line-height: 1.45;
}
.m-case-result {
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  font-weight: 700;
}

/* ===== 成功案例自动滚动容器（无滚动条） ===== */
.m-cases-scroll {
  height: 320px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* ===== 最新文章（3篇） ===== */
.m-articles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.m-article {
  display: block;
  padding: 0.85rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
}
.m-article:active { background: rgba(139, 26, 26, 0.05); }
.m-article-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.4rem 0;
  line-height: 1.5;
}
.m-article-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: var(--color-text-light);
}
.m-article-more {
  display: block;
  text-align: center;
  padding: 0.7rem;
  margin-top: 0.6rem;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
}

/* ===== 律师简介简版（律所团队卡片风） ===== */
.m-about {
  text-align: center;
  padding: 0.25rem 0.5rem;
}
.m-about-team-label {
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-family: "Times New Roman", "STKaiti", "KaiTi", serif;
}
.m-about-team-label::before,
.m-about-team-label::after {
  content: "·";
  margin: 0 0.4rem;
  color: var(--color-gold);
}
.m-about-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.3rem;
  letter-spacing: 0.06em;
}
.m-about-credential {
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin: 0 0 0.7rem;
}
.m-about-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 0.85rem;
  text-align: left;
}
.m-about-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* ===== 联系方式小卡 ===== */
.m-contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.1rem;
  margin: 0.75rem;
  text-align: center;
}
.m-contact-title {
  font-size: 0.78rem;
  opacity: 0.8;
  margin: 0 0 0.4rem;
  letter-spacing: 0.1em;
}
.m-contact-phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}
.m-contact-tip {
  font-size: 0.78rem;
  opacity: 0.85;
  margin: 0;
}

/* ===== 底部固定操作栏 ===== */
.m-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 100;
  padding-bottom: var(--safe-bottom);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
}
.m-bottombar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.25rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.72rem;
  border: none;
  background: transparent;
  cursor: pointer;
  min-height: 56px;
  font-family: inherit;
  gap: 0.2rem;
}
.m-bottombar-item:active { opacity: 0.6; }
.m-bottombar-item.primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: 700;
}
.m-bottombar-item.wechat {
  background: #07c160;
  color: #fff;
  font-weight: 600;
}
.m-bottombar-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== 微信二维码弹出层 ===== */
.m-wechat-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.m-wechat-mask.active { display: flex; }
.m-wechat-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
}
.m-wechat-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.m-wechat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
}
.m-wechat-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 6px;
  background: #fff;
}
.m-wechat-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.m-wechat-tip {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.m-wechat-tip strong {
  color: var(--color-primary);
}

/* ===== Footer 简化版 ===== */
.m-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.72rem;
  color: var(--color-text-light);
  background: transparent;
  line-height: 1.6;
}
.m-footer a { color: var(--color-text-muted); }

/* ===== 极小屏微调 ===== */
@media (max-width: 360px) {
  .m-hero-title { font-size: 1.35rem; }
  .m-contact-phone { font-size: 1.4rem; }
  .m-cta-btn { font-size: 0.95rem; }
}

/* ===== 手机版文章内容页 ===== */
.m-article-page {
  padding: 1rem 1rem calc(80px + env(safe-area-inset-bottom, 0));
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
}

.m-article-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.m-article-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b1a1a;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  line-height: 1.4;
}

.m-article-page-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text, #2a1a1a);
  line-height: 1.4;
  margin: 0.4rem 0 0.6rem 0;
  letter-spacing: -0.01em;
}

.m-article-page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--color-text-muted, #888);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 1.1rem;
}

.m-article-page-dot {
  color: rgba(0,0,0,0.25);
}

.m-article-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.m-article-content p {
  margin: 0 0 1rem 0;
  text-align: justify;
}

.m-article-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #8b1a1a;
  margin: 1.5rem 0 0.7rem 0;
  padding-left: 0.6rem;
  border-left: 3px solid #d4af37;
  line-height: 1.4;
}

.m-article-content h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #2a1a1a;
  margin: 1.3rem 0 0.6rem 0;
  line-height: 1.4;
}

.m-article-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a1a1a;
  margin: 1.1rem 0 0.5rem 0;
}

.m-article-content strong {
  color: #8b1a1a;
  font-weight: 700;
}

.m-article-content ul,
.m-article-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

.m-article-content li {
  margin-bottom: 0.45rem;
  line-height: 1.75;
}

.m-article-content blockquote {
  margin: 1rem 0;
  padding: 0.8rem 1rem;
  background: rgba(139, 26, 26, 0.04);
  border-left: 3px solid #8b1a1a;
  border-radius: 4px;
  color: #555;
  font-size: 0.9rem;
}

.m-article-content blockquote p {
  margin: 0;
}

.m-article-content .highlight-box {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(139, 26, 26, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.m-article-content .highlight-box p {
  margin: 0;
}

.m-article-content a {
  color: #8b1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.m-article-region-box {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #faf6ec, #f5ecd5);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #555;
}

.m-article-region-box p {
  margin: 0;
}

.m-article-region-box strong {
  color: #8b1a1a;
}

.m-article-footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted, #888);
  line-height: 1.7;
}

.m-article-footer p {
  margin: 0.25rem 0;
}

.m-article-disclaimer {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.4);
  margin-top: 0.5rem !important;
}

.m-article-related {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.m-article-related-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text, #2a1a1a);
  margin: 0 0 0.6rem 0;
  position: relative;
  display: inline-block;
}

.m-article-related-title::before,
.m-article-related-title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  vertical-align: middle;
  margin: 0 0.6rem;
}

.m-article-related-link {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8b1a1a;
  background: linear-gradient(135deg, #fff, #faf6ec);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  text-decoration: none !important;
  transition: all 0.2s;
}

.m-article-related-link:hover,
.m-article-related-link:active {
  background: linear-gradient(135deg, #faf6ec, #f5ecd5);
  border-color: #8b1a1a;
}
