/* full-service-04 预览水印（与 default / full-service-02 等模板一致） */
.watermark {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 8vw, 56px);
  color: rgba(239, 68, 68, 0.12);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 0 24px;
  user-select: none;
}

/* 律站之家页脚、微信复制提示、律师简介正文 */
.footer-powered {
  text-align: center;
  padding: 12px 16px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-powered-link {
  color: #fb923c;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-powered-link:hover {
  color: #fdba74;
}
#global-toast.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #111827;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: 90vw;
  text-align: center;
}
#global-toast.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.lawyer-intro-content,
.lawyer-article-body {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
}
.lawyer-intro-content p,
.lawyer-article-body p {
  margin-bottom: 1em;
}
.lawyer-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.empty-hint {
  text-align: center;
  color: #9ca3af;
  padding: 48px 16px;
  font-size: 14px;
}

/* 内容列表分页（成功案例 / 法律资讯 / 律师文集等） */
.pagination-section {
  padding: 32px 0 0;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.page-btn:hover:not(.disabled):not(.active) {
  background-color: #fff7ed;
  color: #ea580c;
  border-color: #fdba74;
}
.page-btn.active {
  background-color: #f97316;
  color: #ffffff;
  border-color: #f97316;
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.page-btn.page-nav {
  padding: 0 14px;
}

@media (min-width: 768px) {
  #global-toast.toast {
    bottom: 32px;
  }
  .pagination-section {
    padding: 48px 0 0;
  }
  .pagination {
    gap: 8px;
  }
  .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
  .page-btn.page-nav {
    padding: 0 16px;
  }
}
