@charset "utf-8";
/* =============================================================
   法盾律师网 · 页面层 (pages.css)
   依赖 base.css，须在其之后加载
   01 首页 hero      02 数据条      03 分类信息
   04 带缩略图文章列表   05 无缩略图多列列表   06 律师推荐
   07 咨询表单区      08 友情链接    09 列表页
   10 文章页         11 分页与筛选
   ============================================================= */

/* ============ 01 首页 hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 460px at 82% -10%, rgba(195, 154, 77, .22), transparent 62%),
    radial-gradient(760px 420px at 6% 108%, rgba(31, 111, 120, .26), transparent 60%),
    linear-gradient(140deg, #0a1b30 0%, #12314f 52%, #0b2540 100%);
  color: #fff;
}
/* 细网格底纹 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 44px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 58px;
}
.hero__inner > * { min-width: 0; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12.5px;
  color: #dbe6f0;
  margin-bottom: 18px;
}
.hero__badge b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #241a05;
  font-size: 11.5px;
  font-weight: 700;
}
.hero__title {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: #fff;
}
.hero__title em {
  font-style: normal;
  position: relative;
  color: var(--accent-2);
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .3em;
  background: rgba(195, 154, 77, .22);
  border-radius: 3px;
  z-index: -1;
}
.hero__desc {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #b8cadd;
  max-width: 36em;
}

/* 搜索面板 */
.search-panel {
  margin-top: 26px;
  background: #fff;
  border-radius: var(--r-m);
  padding: 14px;
  box-shadow: 0 22px 50px rgba(3, 12, 24, .38);
  max-width: 600px;
  color: var(--text);
}
.search-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.search-tab {
  padding: 6px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.search-tab:hover { background: #f1f3f5; color: var(--ink-3); }
.search-tab.is-active { background: var(--ink); color: #fff; }

.search-form { display: flex; gap: 10px; flex-wrap: wrap; }
.search-form__field {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  align-items: center;
}
.search-form__field .icon {
  position: absolute;
  left: 13px;
  color: #93a1af;
  pointer-events: none;
}
.search-input {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 40px;
  border: 1px solid #d8dce1;
  border-radius: var(--r-s);
  background: #fbfcfd;
  font-size: 15px;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.search-input:focus {
  outline: none;
  border-color: var(--ink-3);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 65, 102, .12);
}
.search-form .btn { flex: 0 0 auto; height: 46px; }

.hero__keys {
  display: flex;
  align-items: center;
  gap: 8px 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: #9fb4c9;
}
.hero__keys a {
  color: #cddceb;
  padding: 3px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  transition: color .2s, border-color .2s, background .2s;
}
.hero__keys a:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(195, 154, 77, .18);
}

/* hero 右侧视觉 */
.hero__visual { position: relative; }
.hero__art {
  width: 100%;
  border-radius: var(--r-l);
  box-shadow: 0 26px 60px rgba(3, 12, 24, .45);
  display: block;
}
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(3, 12, 24, .32);
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.45;
}
.hero__chip b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); font-family: var(--font-num); }
.hero__chip .icon { color: var(--accent-deep); }
.hero__chip--a { left: -14px; top: 22%; }
.hero__chip--b { right: -10px; bottom: 16%; }
.hero__chip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  flex: 0 0 auto;
}

/* ============ 02 数据条 ============ */
.stat-strip {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--sd-m);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-strip__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  border-right: 1px solid var(--line-2);
  min-width: 0;
}
.stat-strip__item:last-child { border-right: 0; }
.stat-strip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #eef3f8;
  color: var(--ink-3);
  flex: 0 0 auto;
}
.stat-strip__num {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.stat-strip__num small { font-size: 13px; font-weight: 600; margin-left: 2px; }
.stat-strip__label { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

/* ============ 03 分类信息 ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cat-grid > * { min-width: 0; }

.cat-card {
  position: relative;
  display: block;
  padding: 22px 20px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.cat-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cat-card:hover {
  border-color: #cfd8e2;
  box-shadow: var(--sd-m);
  transform: translateY(-4px);
}
.cat-card:hover::after { transform: scaleX(1); }

.cat-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef3f8;
  color: var(--ink-3);
  margin-bottom: 14px;
  transition: background .22s, color .22s;
}
.cat-card:hover .cat-card__ico { background: var(--ink); color: var(--accent-2); }
.cat-card__name {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.cat-card__desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--text-3);
}
.cat-card__foot .link-arrow { font-size: 12.5px; }

/* ============ 04 带缩略图的文章列表 ============ */
.feat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
  gap: 30px;
}
.feat-grid > * { min-width: 0; }

.thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf1;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
a:hover > .thumb img,
.thumb-link:hover .thumb img { transform: scale(1.045); }
.thumb--wide { aspect-ratio: 21 / 9; }
.thumb__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(12, 35, 64, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(3px);
}
.thumb__badge--accent { background: rgba(195, 154, 77, .95); color: #241a05; }

/* 头条大卡 */
.feat-lead .card__body { padding: 22px 24px 24px; }
.feat-lead__title {
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 800;
  line-height: 1.42;
  color: var(--ink);
  transition: color .2s;
}
.feat-lead a:hover .feat-lead__title { color: var(--accent-deep); }
.feat-lead__excerpt {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feat-lead .meta { margin-top: 14px; }

/* 侧栏条目（小缩略图） */
.feat-side {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 6px 20px;
  min-width: 0;
}
.feat-side__item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
  min-width: 0;
}
.feat-side__item:last-child { border-bottom: 0; }
.feat-side__thumb { border-radius: var(--r-s); }
.feat-side__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}
.feat-side__item:hover .feat-side__title { color: var(--accent-deep); }
.feat-side__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--text-3);
}

/* 带缩略图的三列卡片流 */
.art-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.art-cards > * { min-width: 0; }
.art-card .card__body { padding: 16px 18px 18px; }
.art-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}
.art-card:hover .art-card__title { color: var(--accent-deep); }
.art-card__excerpt {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-card .meta { margin-top: 12px; font-size: 12.5px; }

/* ============ 05 无缩略图多列列表 ============ */
.nlist { display: grid; min-width: 0; }
.nlist--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 46px; }
.nlist--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 38px; }
.nlist > * { min-width: 0; }

.nlist__item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  min-width: 0;
}
.nlist__rank {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-top: 3px;
  padding: 0 5px;
  border-radius: 5px;
  background: #eef1f5;
  color: #6b7c8d;
  font-family: var(--font-num);
  font-size: 11.5px;
  font-weight: 700;
}
.nlist__item:nth-child(-n+3) .nlist__rank {
  background: var(--ink);
  color: var(--accent-2);
}
.nlist__body { min-width: 0; flex: 1 1 auto; }
.nlist__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.62;
  color: var(--text);
  transition: color .18s;
}
.nlist__title:hover { color: var(--accent-deep); }
.nlist__meta {
  display: flex;
  align-items: center;
  gap: 6px 14px;
  flex-wrap: wrap;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--text-3);
}
.nlist__cat { color: var(--accent-deep); font-weight: 600; }

/* 分类切换条（无缩略图区的顶部 tab） */
.pill-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pill {
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: background .18s, color .18s, border-color .18s;
}
.pill:hover { border-color: var(--ink-3); color: var(--ink); }
.pill.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ============ 06 律师推荐 ============ */
.lawyers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.lawyers > * { min-width: 0; }

.lawyer {
  display: block;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  text-align: center;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.lawyer:hover { border-color: #cfd8e2; box-shadow: var(--sd-m); transform: translateY(-3px); }
.lawyer__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line), 0 6px 16px rgba(12, 35, 64, .1);
  object-fit: cover;
  background: #eef1f5;
}
.lawyer__name {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lawyer__name .icon { color: var(--accent); }
.lawyer__firm {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.6;
}
.lawyer__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.lawyer__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--text-3);
}

/* ============ 07 咨询表单区 ============ */
.form-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}
.form-section__grid > * { min-width: 0; }

.form-intro__title {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.32;
  color: #fff;
}
.form-intro__title em { font-style: normal; color: var(--accent-2); }
.form-intro__desc {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #a9bccf;
  max-width: 34em;
}
.form-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.form-perk {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}
.form-perk__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(195, 154, 77, .16);
  border: 1px solid rgba(195, 154, 77, .3);
  color: var(--accent-2);
  flex: 0 0 auto;
}
.form-perk__title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.5; }
.form-perk__desc { font-size: 13.5px; color: #94a9be; line-height: 1.75; margin-top: 2px; }

.form-side-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, .04);
  min-width: 0;
}
.form-side-note .icon { color: var(--accent-2); flex: 0 0 auto; }
.form-side-note__tel {
  font-family: var(--font-num);
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
}
.form-side-note__label { font-size: 12.5px; color: #94a9be; }

/* ============ 08 友情链接 ============ */
.flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flinks a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: #fff;
  font-size: 13.5px;
  color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  max-width: 100%;
}
.flinks a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.flinks__group { width: 100%; }
.flinks__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 10px;
}
.flinks + .flinks { margin-top: 20px; }

/* ============ 09 列表页 ============ */
.list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 42px;
  align-items: start;
}
.list-layout > * { min-width: 0; }

/* 筛选条 */
.filterbar {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  margin-bottom: 26px;
}
.filterbar__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex: 0 0 auto;
}
.filterbar__label .icon { color: var(--accent-deep); }
.filterbar__opts {
  display: flex;
  align-items: center;
  gap: 8px 8px;
  flex-wrap: wrap;
  min-width: 0;
}

/* 文章行（带缩略图） */
.art-row {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.art-row:first-of-type { padding-top: 0; }
.art-row:last-of-type { border-bottom: 0; }
.art-row__thumb { border-radius: var(--r-m); }
.art-row__main { min-width: 0; }
.art-row__title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  transition: color .2s;
}
.art-row:hover .art-row__title { color: var(--accent-deep); }
.art-row__excerpt {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-row__foot {
  display: flex;
  align-items: center;
  /* 元信息成组靠左，与精选卡保持一致；不要用 space-between 拉散 */
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* 纯文字行（无缩略图） */
.art-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  min-width: 0;
}
.art-line__date {
  flex: 0 0 auto;
  width: 56px;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 12px;
  line-height: 1.15;
}
.art-line__day {
  display: block;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.art-line__mon {
  display: block;
  font-family: var(--font-num);
  font-size: 11.5px;
  color: var(--text-3);
}
.art-line__main { min-width: 0; flex: 1 1 auto; }
.art-line__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  transition: color .18s;
}
.art-line__title:hover { color: var(--accent-deep); }
.art-line__meta {
  display: flex;
  align-items: center;
  gap: 6px 14px;
  flex-wrap: wrap;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--text-3);
}

/* 侧栏订阅卡 */
.side-cta {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  border: 0;
}
.side-cta .widget__head {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .14);
}
.side-cta .widget__head h2,
.side-cta .widget__head h3 { color: #fff; }
.side-cta .widget__head .icon { color: var(--accent-2); }
.side-cta .widget__body { padding: 18px; }
.side-cta p { font-size: 13.5px; line-height: 1.8; color: #b8cadd; }
.side-cta .btn { margin-top: 14px; }

/* 标签云 */
.tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* 文章目录 */
.toc { display: flex; flex-direction: column; gap: 2px; }
.toc a {
  display: block;
  padding: 7px 10px 7px 12px;
  border-left: 2px solid var(--line);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  transition: border-color .18s, color .18s, background .18s;
}
.toc a:hover,
.toc a.is-active {
  border-left-color: var(--accent);
  color: var(--accent-deep);
  background: var(--accent-soft);
}
.toc a.toc--h3 { padding-left: 26px; font-size: 13px; color: var(--text-3); }

/* ============ 10 文章页 ============ */
.art-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}
.art-layout > * { min-width: 0; }

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 34px 40px 38px;
  min-width: 0;
}
.article__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.article__title {
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink);
}
.article__sub {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-2);
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--text-3);
}
.article__meta .meta__item { display: inline-flex; align-items: center; gap: 5px; }

/* 正文排版 */
.article__body {
  margin-top: 26px;
  font-size: 16.5px;
  line-height: 2.05;
  color: #26313d;
}
.article__body > * { max-width: 100%; }
.article__body p { margin-bottom: 18px; }
.article__body h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  scroll-margin-top: 100px;
}
.article__body h3 {
  margin: 26px 0 10px;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink-3);
  scroll-margin-top: 100px;
}
.article__body h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 2px;
  background: var(--accent);
  vertical-align: 2px;
}
.article__body ul,
.article__body ol {
  margin: 0 0 20px;
  padding-left: 22px;
  list-style: none;
}
.article__body li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 6px;
}
.article__body ul > li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.article__body ol { counter-reset: oli; }
.article__body ol > li { counter-increment: oli; }
.article__body ol > li::before {
  content: counter(oli);
  position: absolute;
  left: -22px;
  top: .32em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--accent-2);
  font-family: var(--font-num);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
}
.article__body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  background: var(--accent-soft);
  color: #3c3325;
  font-size: 15.5px;
  line-height: 1.9;
}
.article__body blockquote p:last-child { margin-bottom: 0; }
.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14.5px;
  line-height: 1.75;
  min-width: 520px;
}
.article__body th,
.article__body td {
  padding: 11px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article__body th {
  background: #f4f6f8;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.article__body tbody tr:nth-child(even) td { background: #fafbfc; }
.article__body .table-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: -8px;
}
.article__body strong { color: var(--ink); font-weight: 700; }
.article__body code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #f1f3f5;
  font-family: var(--font-num);
  font-size: .92em;
}

/* 正文内的提示框 */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: var(--r-s);
  background: var(--teal-soft);
  border: 1px solid #cfe4e6;
  font-size: 15px;
  line-height: 1.85;
  color: #16464b;
}
.callout .icon { color: var(--teal); margin-top: 5px; }
.callout--warn {
  background: var(--accent-soft);
  border-color: #ecdfc4;
  color: #4a3a1c;
}
.callout--warn .icon { color: var(--accent-deep); }
.callout p:last-child { margin-bottom: 0; }

/* 文章页标签与声明 */
.article__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.article__tags .tag {
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.article__tags .tag:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.article__tags-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  margin-right: 2px;
}
.article__disclaimer {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--r-s);
  background: #fafbfc;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-3);
}

/* 上下篇 */
.prevnext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.prevnext__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  min-width: 0;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.prevnext__item:hover { border-color: var(--accent); box-shadow: var(--sd-s); transform: translateY(-2px); }
.prevnext__item .icon { color: var(--accent-deep); flex: 0 0 auto; }
.prevnext__body { min-width: 0; }
.prevnext__label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 3px;
}
.prevnext__title {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prevnext__item--next { justify-content: flex-end; text-align: right; }
.prevnext__item--next .prevnext__body { order: -1; }
.prevnext__item--empty { visibility: hidden; }

/* 相关阅读（页面底部，无缩略图两列） */
.related-block {
  margin-top: 34px;
  padding: 26px 30px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
}
.related-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.related-block__title .icon { color: var(--accent-deep); }

/* ============ 11 分页与筛选 ============ */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
}
.pager__item:hover { border-color: var(--ink-3); color: var(--ink); }
.pager__item.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pager__item.is-disabled {
  /* 对比度 4.9:1；原 #b3bdc7 仅 1.84:1，肉眼近乎不可见 */
  color: #667281;
  cursor: not-allowed;
  background: #fafbfc;
}
.pager__info {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

/* ============ 响应式 ============ */
@media (max-width: 1180px) {
  .lawyers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 34px; padding-top: 46px; padding-bottom: 68px; }
  .hero__visual { max-width: 560px; }
  .hero__chip--a { left: 0; }
  .hero__chip--b { right: 0; }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 26px; }
  .stat-strip__item { border-bottom: 1px solid var(--line-2); }
  .stat-strip__item:nth-child(2n) { border-right: 0; }
  .stat-strip__item:nth-last-child(-n+2) { border-bottom: 0; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feat-grid { grid-template-columns: minmax(0, 1fr); }
  .art-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nlist--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-section__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .list-layout,
  .art-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .article { padding: 28px 26px 32px; }
}

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .cat-card { padding: 18px 16px 16px; }
  .cat-card__ico { width: 42px; height: 42px; border-radius: 10px; margin-bottom: 11px; }
  .cat-card__name { font-size: 15.5px; }

  .art-cards { grid-template-columns: minmax(0, 1fr); }
  .nlist--2,
  .nlist--3 { grid-template-columns: minmax(0, 1fr); }
  .nlist__item { padding: 12px 0; }

  .feat-side { padding: 4px 16px; }
  .feat-side__item { grid-template-columns: 88px minmax(0, 1fr); gap: 12px; padding: 13px 0; }
  .feat-lead .card__body { padding: 18px 18px 20px; }

  .lawyers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .lawyer { padding: 18px 14px; }
  .lawyer__avatar { width: 60px; height: 60px; }

  .art-row { grid-template-columns: minmax(0, 1fr); gap: 14px; padding: 20px 0; }
  .art-row__thumb { aspect-ratio: 21 / 9; }
  .article { padding: 22px 18px 26px; border-radius: var(--r-m); }
  .article__body { font-size: 16px; line-height: 1.98; margin-top: 20px; }
  .article__body h2 { margin-top: 30px; }
  .related-block { padding: 20px 18px 16px; }

  .prevnext { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .prevnext__item--next { justify-content: flex-start; text-align: left; }
  .prevnext__item--next .prevnext__body { order: 0; }
  .prevnext__item--empty { display: none; }

  .hero__chip { padding: 8px 11px; font-size: 11.5px; }
  .hero__chip b { font-size: 13.5px; }
  .hero__chip__ico { width: 28px; height: 28px; border-radius: 8px; }
  .hero__chip--a { top: 12px; }
  .hero__chip--b { bottom: 12px; }
  .search-panel { padding: 12px; }
  .filterbar { padding: 14px 16px; }
  .art-line__date { width: 48px; padding-right: 10px; }
}

@media (max-width: 560px) {
  .stat-strip { grid-template-columns: minmax(0, 1fr); }
  .stat-strip__item { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .stat-strip__item:nth-child(2n) { border-right: 0; }
  .stat-strip__item:last-child { border-bottom: 0; }
  .search-form .btn { flex: 1 1 100%; }
  .lawyers { grid-template-columns: minmax(0, 1fr); }
  .hero__title { font-size: clamp(25px, 7.4vw, 32px); }
  .form-card { padding: 20px 16px; }
  .side-cta .widget__body { padding: 16px; }
}

@media (max-width: 380px) {
  .hero__chip--a { display: none; }
}
