/* ======================
   LAWYER-DETAIL.CSS ? ?????
   ====================== */

/* ========== Lawyer Hero ========== */
.lawyer-hero { padding: 28px 0 40px; }

.lawyer-hero-wrap {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.lawyer-hero-photo {
  position: relative;
  width: 248px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--color-primary) 0%, #0f1825 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.lawyer-hero-photo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color-accent);
  z-index: 2;
  border-radius: 3px 0 0 3px;
}

.lawyer-avatar {
  width: 72%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-bottom: -4px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.lawyer-photo-shine {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lawyer-photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lawyer-hero-info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.lawyer-hero-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.lawyer-hero-header h1 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--text-title);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lawyer-badge { font-size: 12px; }

.lawyer-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.lawyer-views {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.lawyer-intro-title {
  margin: 0 0 12px;
  padding: 8px 14px;
  border-left: 3px solid var(--color-accent);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text-title);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
}

.lawyer-brief {
  margin: 0 0 16px;
  padding: 12px 0 0;
  border-top: 1px solid var(--border-color);
}

.lawyer-brief-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

.lawyer-brief-meta {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.lawyer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.lawyer-stat {
  flex: 1;
  min-width: 100px;
  padding: 0 20px;
  text-align: left;
  border-right: 1px solid var(--border-color);
  background: none;
  border-radius: 0;
}

.lawyer-stat:first-child { padding-left: 0; }
.lawyer-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.lawyer-stat-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 2px;
}

.lawyer-stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.lawyer-tags span,
.lawyer-tags a {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-gray-light);
  border: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
}

.lawyer-tags a {
  text-decoration: none;
  display: inline-block;
}
.lawyer-tags a:hover {
  border-color: var(--color-accent);
  color: var(--text-title);
}

.lawyer-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.lawyer-hero-cta .btn-ghost {
  min-width: 140px;
}

.cm-value a {
  color: inherit;
  text-decoration: none;
}
.cm-value a:hover {
  color: var(--color-accent);
}

/* ========== ????? ========== */
.lawyer-content-section { padding-top: 0; }

.lawyer-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ========== Tab ========== */
.lawyer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
  padding-bottom: 0;
}

.lawyer-tab {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
  font-weight: 500;
  margin-bottom: -1px;
  letter-spacing: 0.02em;
}

.lawyer-tab:hover { color: var(--text-title); }

.lawyer-tab.active {
  color: var(--text-title);
  border-bottom-color: var(--color-accent);
  font-weight: 650;
}

.lawyer-tab-content { display: none; }
.lawyer-tab-content.active { display: block; animation: lawyerTabIn .28s ease; }

@keyframes lawyerTabIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* ========== 个人简介 ========== */
.lawyer-profile {
  max-width: 42rem;
}

.lawyer-profile-head {
  margin-bottom: 18px;
}

.lawyer-profile-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lawyer-profile-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-title);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lawyer-profile-roles {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lawyer-profile-roles li {
  margin: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-title);
  background: rgba(26, 35, 50, 0.04);
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 2px;
  line-height: 1.4;
}

.lawyer-profile-lead {
  margin: 0 0 22px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-title);
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.035), rgba(212, 175, 55, 0.06));
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
}

.lawyer-profile-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lawyer-profile-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.95;
  text-align: justify;
  text-justify: inter-ideograph;
}

.lawyer-profile-text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 16px;
}

.lawyer-section-h {
  position: relative;
  margin: 28px 0 18px;
  padding-left: 12px;
  font-size: 18px;
  color: var(--text-title);
  font-weight: 650;
  line-height: 1.35;
}

.lawyer-section-h::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  border-radius: 2px;
  background: var(--color-accent);
}

.lawyer-empty-tip {
  margin: 8px 0 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.02);
  border: 1px dashed rgba(100, 116, 139, 0.35);
  border-radius: 10px;
  line-height: 1.7;
}

.lawyer-credentials {
  margin-top: 36px;
  padding-top: 8px;
}

.lawyer-credentials .lawyer-section-h { margin-top: 0; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.credential-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  align-items: flex-start;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.credential-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.credential-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-item h4 {
  font-size: 14px;
  color: var(--text-title);
  font-weight: 600;
  margin-bottom: 4px;
}

.credential-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== ???? ========== */
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, border-color 0.25s, transform 0.25s;
}

.case-item:hover { box-shadow: var(--shadow-md); }

a.case-item,
a.case-item--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.case-item:hover,
a.case-item--link:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(26, 35, 50, 0.08);
  transform: translateY(-2px);
}
a.case-item:hover .case-header h3,
a.case-item--link:hover .case-header h3 {
  color: var(--color-accent-deep);
}
.case-item-more {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 650;
  color: var(--color-accent-deep);
}
.case-item-more::after {
  content: ' →';
  transition: transform 0.2s;
}
a.case-item:hover .case-item-more::after,
a.case-item--link:hover .case-item-more::after {
  transform: translateX(3px);
}

.case-header { margin-bottom: 16px; }
.case-tag { margin-bottom: 10px; }

.case-header h3 {
  font-size: 17px;
  color: var(--text-title);
  font-weight: 600;
  line-height: 1.4;
}

.case-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.case-result {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-title);
}

.case-result-label {
  font-weight: 600;
  color: var(--color-accent);
}

/* ========== 学术成果：紧凑书目列表 ========== */
.publications-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
  counter-reset: pub-counter;
}

.pub-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  background: none;
  border-radius: 0;
  counter-increment: pub-counter;
}

.pub-item::before {
  content: counter(pub-counter, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.6;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.pub-item:hover {
  box-shadow: none;
}

.pub-item h4 {
  margin: 0;
  font-size: 14px;
  color: var(--text-title);
  font-weight: 600;
  line-height: 1.55;
}

.pub-source {
  margin: 0;
  grid-column: 2;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== ????? ========== */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cm-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cm-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cm-value {
  font-size: 13px;
  color: var(--text-title);
  font-weight: 500;
}

.sidebar-cta {
  width: 100%;
  text-align: center;
}

/* ???? */
.practice-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.practice-areas span {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-gray-light);
  border: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-body);
  transition: all 0.2s;
}

.practice-areas a {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-gray-light);
  border: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-body);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.practice-areas span:hover,
.practice-areas a:hover {
  border-color: var(--color-accent);
  color: var(--text-title);
}

/* ?? */
.sidebar-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.sidebar-qr-img {
  width: 130px;
  height: 130px;
  background: var(--bg-gray-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-placeholder-dot {
  width: 90px;
  height: 90px;
  background: repeating-conic-gradient(#333 0% 25%, #fff 0% 50%) 0 0 / 10px 10px;
  border-radius: 2px;
  position: relative;
}

.qr-placeholder-dot::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: #fff;
  border-radius: 2px;
}

.qr-card-tip {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ========== ??? ========== */
@media (max-width: 1024px) {
  .lawyer-layout { grid-template-columns: 1fr; }
  .lawyer-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .lawyer-sidebar .sidebar-card { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .lawyer-hero-wrap { flex-direction: column; text-align: center; align-items: center; }
  .lawyer-hero-photo {
    width: 180px;
    aspect-ratio: 3 / 4;
  }
  .lawyer-hero-header { justify-content: center; }
  .lawyer-hero-header h1 { font-size: 26px; }
  .lawyer-intro-title { text-align: left; }
  .lawyer-brief { text-align: left; }
  .lawyer-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 0;
  }
  .lawyer-stat {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 0 6px;
  }
  .lawyer-stat:first-child { padding-left: 0; }
  .lawyer-stat:last-child { padding-right: 0; }
  .lawyer-stat-num {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .lawyer-stat-label {
    font-size: 10px;
    line-height: 1.35;
  }
  .lawyer-tags { justify-content: center; }
  .lawyer-hero-cta { justify-content: center; }
  .lawyer-sidebar { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .lawyer-tabs { overflow-x: auto; }
  .lawyer-tab { padding: 10px 18px; white-space: nowrap; font-size: 13px; }
  .honor-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .honor-thumb { width: 44px; height: 44px; }
  .honor-year {
    grid-column: 2;
    justify-self: start;
  }
  .banners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .social-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ========== 教育经历：左侧紧凑时间线 ========== */
.experience-timeline {
  position: relative;
  margin: 4px 0 8px;
  padding: 0 0 0 2px;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-color);
  z-index: 0;
}

.exp-item {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 16px;
  align-items: start;
  padding: 0;
  z-index: 1;
}

.exp-item + .exp-item {
  margin-top: 0;
}

.exp-dot {
  width: 13px;
  height: 13px;
  margin-top: 5px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  z-index: 2;
}

.exp-body {
  min-width: 0;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.exp-item:last-child .exp-body {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.exp-date {
  display: block;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.exp-degree {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-title);
}

.exp-school {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
}

.exp-desc {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.exp-desc p {
  margin: 0 0 6px;
}
.exp-desc p:last-child {
  margin-bottom: 0;
}

/* ========== 资质证书墙 ========== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cert-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(230, 160, 23, 0.45);
}
.cert-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 8px;
  box-sizing: border-box;
}
.cert-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  background: #fff;
  transition: transform 0.3s ease;
}
.cert-card:hover .cert-thumb {
  transform: scale(1.02);
}
.cert-zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(26, 35, 50, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0.55;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.cert-card:hover .cert-zoom-icon {
  opacity: 1;
  background: rgba(26, 35, 50, 0.9);
  transform: scale(1.06);
}
.cert-info {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}
.cert-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-title);
  margin: 0 0 4px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cert-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .certs-grid { grid-template-columns: 1fr; }
  .cert-thumb-wrap { aspect-ratio: 16 / 11; padding: 10px; }
}

/* ========== Lightbox ???? ========== */
.cert-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 16px;
}
.cert-lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 2;
}
.cert-lb-close:hover { opacity: 1; }
.cert-lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cert-lb-caption {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-align: center;
  max-width: 720px;
}

/* ========== 锦旗致谢 ========== */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.banner-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 175, 55, 0.45);
}

.banner-thumb-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.banner-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 4px;
}

.banner-placeholder {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
}

.banner-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 35, 50, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.55;
}

.banner-card:hover .banner-zoom { opacity: 1; }

.banner-info {
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.banner-title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.4;
}

.banner-sub {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== 社会职务 ========== */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
}

.social-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.social-item:last-child { border-bottom: none; }

.social-title {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.4;
}

.social-org {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.45;
}

.social-desc {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.social-range {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 2px;
}

/* ========== 荣誉（旧结构兼容） ========== */
.honors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
}

.honor-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.honor-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gray-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.honor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.honor-icon-fallback {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.honor-body {
  min-width: 0;
}

.honor-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-title);
  margin: 0 0 2px;
  line-height: 1.4;
}

.honor-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.honor-year {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* 兼容旧 honors-grid 结构（若缓存残留） */
.honors-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-color);
}
.honor-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding: 14px 0;
  box-shadow: none;
}
.honor-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-color);
}
.honor-icon {
  position: static;
  transform: none;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--bg-gray-light);
  font-size: 18px;
  box-shadow: none;
}

/* ========== ????? ========== */
.media-reports-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.media-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.media-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-2px);
}
.media-thumb {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gray-light);
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.media-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}
.media-date {
  padding: 3px 10px;
  background: var(--bg-gray-light);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.media-source {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}
.media-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-title);
  margin: 0 0 10px;
  line-height: 1.5;
}
.media-summary {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
  flex: 1;
}
.media-link-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.media-link-btn:hover {
  background: var(--color-accent);
  transform: translateX(2px);
}

/* ========== ???????? section ???? ========== */
.lawyer-section-h {
  margin: 48px 0 24px;
  padding-left: 14px;
  border-left: 4px solid var(--color-accent);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-title);
}
.lawyer-section-h + .experience-timeline,
.lawyer-section-h + .certs-grid,
.lawyer-section-h + .banners-grid,
.lawyer-section-h + .social-list,
.lawyer-section-h + .honors-list,
.lawyer-section-h + .honors-grid,
.lawyer-section-h + .publications-list,
.lawyer-section-h + .media-reports-list {
  margin-top: 0;
}

/* ========== data-show-if-filled ??????????? ========== */
[data-show-if-filled=''] { display: none !important; }
