/* 律师详情页样式 —— 从 lawyers/*.html 内联 <style> 抽取，供模板生成页共用 */
/* === 律师个人页专属样式 === */
    .lawyer-hero {
      background: var(--gradient-hero);
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .lawyer-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(200,165,91,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(46,68,112,0.15) 0%, transparent 50%);
    }
    .lawyer-hero-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .lawyer-photo-wrap {
      position: relative;
      width: 340px;
      height: 420px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      border: 3px solid rgba(200,165,91,0.3);
    }
    .lawyer-photo-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a2744 0%, #243556 50%, #2e4470 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .lawyer-photo-placeholder::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 180px;
      height: 240px;
      background: linear-gradient(180deg, transparent 0%, rgba(200,165,91,0.15) 100%);
      clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    }
    .lawyer-photo-initial {
      font-family: var(--font-serif);
      font-size: 120px;
      font-weight: 700;
      color: var(--gold-500);
      line-height: 1;
      margin-bottom: 16px;
      text-shadow: 0 4px 24px rgba(200,165,91,0.3);
      z-index: 1;
    }
    .lawyer-photo-label {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 4px;
      text-transform: uppercase;
      z-index: 1;
    }
    .lawyer-photo-badge {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: var(--gradient-gold);
      color: var(--navy-900);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      z-index: 2;
      box-shadow: var(--shadow-gold);
    }
    .lawyer-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lawyer-info-block {}
    .lawyer-info-block .breadcrumb {
      color: rgba(255,255,255,0.85);
      margin-bottom: 20px;
      font-size: 0.9rem;
    }
    .lawyer-info-block .breadcrumb a { color: var(--gold-300); }
    .lawyer-info-block .breadcrumb a:hover { color: var(--gold-200); }
    .lawyer-info-block .breadcrumb > span { color: rgba(255,255,255,0.5); }
    .lawyer-info-block h1 {
      font-family: var(--font-serif);
      font-size: 48px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
      letter-spacing: 2px;
    }
    .lawyer-title-text {
      font-size: 20px;
      color: var(--gold-400);
      margin-bottom: 20px;
      font-weight: 500;
    }
    .lawyer-info-block .lawyer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-start;
      margin-bottom: 24px;
    }
    .lawyer-tag {
      background: rgba(200,165,91,0.15);
      border: 1px solid rgba(200,165,91,0.3);
      color: var(--gold-300);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
    }
    .lawyer-hero-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 28px;
    }
    .lawyer-hero-stat {}
    .lawyer-hero-stat .num {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 700;
      color: var(--gold-500);
      line-height: 1;
    }
    .lawyer-hero-stat .label {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }
    .lawyer-hero-cta {
      display: flex;
      gap: 16px;
    }
    .lawyer-hero-cta .btn-primary {
      background: var(--gradient-gold);
      color: var(--navy-900);
      padding: 14px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      border: none;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      box-shadow: var(--shadow-gold);
    }
    .lawyer-hero-cta .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200,165,91,0.4);
    }
    .lawyer-hero-cta .btn-secondary {
      background: rgba(255,255,255,0.1);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
    }
    .lawyer-hero-cta .btn-secondary:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.3);
    }

    /* === 正文区域 === */
    .lawyer-body {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 60px;
    }
    .lawyer-main {}

    /* === Quick Answer === */
    .lawyer-quick-answer {
      background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-200) 100%);
      border-left: 4px solid var(--gold-500);
      padding: 32px;
      border-radius: var(--radius-md);
      margin-bottom: 48px;
    }
    .lawyer-quick-answer .qa-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--gold-600);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .lawyer-quick-answer p {
      font-size: 16px;
      color: var(--navy-700);
      line-height: 1.9;
    }

    /* === Section通用 === */
    .lawyer-section { margin-bottom: 56px; }
    .lawyer-section-title {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 700;
      color: var(--navy-800);
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--cream-300);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .lawyer-section-title::before {
      content: '';
      width: 4px;
      height: 28px;
      background: var(--gradient-gold);
      border-radius: 2px;
    }

    /* === 专业简介 === */
    .lawyer-bio p {
      font-size: 16px;
      line-height: 2;
      color: var(--gray-700);
      margin-bottom: 16px;
      text-align: justify;
    }
    .lawyer-bio strong {
      color: var(--navy-800);
      font-weight: 600;
    }

    /* === 专业领域卡片 === */
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .expertise-card {
      background: var(--white);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    .expertise-card:hover {
      border-color: var(--gold-400);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .expertise-card .icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: var(--gradient-navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }
    .expertise-card h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy-800);
      margin-bottom: 8px;
    }
    .expertise-card p {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* === 代表案例 === */
    .case-detail-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 28px;
      margin-bottom: 20px;
      border: 1px solid var(--cream-300);
      transition: all 0.4s var(--ease-out);
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
    }
    .case-detail-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--gold-400);
    }
    .case-detail-link {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    .case-detail-link:hover {
      transform: translateY(-2px);
    }
    .case-detail-link:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 4px;
    }
    .case-detail-num {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 700;
      color: var(--gold-300);
      line-height: 1;
    }
    .case-detail-body h4 {
      font-size: 17px;
      font-weight: 600;
      color: var(--navy-800);
      margin: 0;
    }
    .case-detail-body p {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
    }
    .case-detail-result {
      text-align: right;
      white-space: nowrap;
    }
    .case-detail-result .amount {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--gold-600);
    }
    .case-detail-result .label {
      font-size: 12px;
      color: var(--gray-400);
    }
    .case-detail-arrow {
      display: inline-block;
      margin: 0;
      color: var(--gold-600);
      font-size: 20px;
      transition: transform 0.3s var(--ease-out);
    }
    .case-detail-link:hover .case-detail-arrow {
      transform: translateX(4px);
    }
    .lawyer-cases-section {
      margin-top: 56px;
      scroll-margin-top: 110px;
    }

    /* === 律师个人案例详情 === */
    .lawyer-case-container {
      max-width: 900px;
    }
    .lawyer-case-article {
      color: var(--gray-700);
    }
    .lawyer-case-summary {
      padding: 28px 32px;
      margin-bottom: 44px;
      border-left: 4px solid var(--gold-500);
      border-radius: var(--radius-md);
      background: var(--cream-100);
    }
    .lawyer-case-summary span {
      display: block;
      margin-bottom: 10px;
      color: var(--gold-700);
      font-size: 13px;
      font-weight: 700;
    }
    .lawyer-case-summary p,
    .lawyer-case-content-section p {
      margin: 0;
      color: var(--navy-700);
      font-size: 16px;
      line-height: 1.9;
    }
    .lawyer-case-content-section {
      margin-bottom: 40px;
    }
    .lawyer-case-content-section h2 {
      margin-bottom: 16px;
      color: var(--navy-850);
      font-family: var(--font-serif);
      font-size: 26px;
    }
    .lawyer-case-result-block {
      padding: 28px 32px;
      border: 1px solid var(--gold-300);
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--cream-100), var(--white));
    }
    .lawyer-case-original-content h2 {
      margin: 48px 0 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--cream-300);
      color: var(--navy-850);
      font-family: var(--font-serif);
      font-size: 26px;
      line-height: 1.45;
    }
    .lawyer-case-original-content p {
      margin: 0 0 18px;
      color: var(--navy-700);
      font-size: 16px;
      line-height: 1.95;
    }
    .lawyer-case-original-content h3 {
      margin: 32px 0 14px;
      color: var(--navy-850);
      font-family: var(--font-serif);
      font-size: 21px;
      line-height: 1.5;
    }
    .lawyer-case-original-content ul,
    .lawyer-case-original-content ol {
      margin: 0 0 22px;
      padding-left: 28px;
      color: var(--navy-700);
      font-size: 16px;
      line-height: 1.9;
    }
    .lawyer-case-original-content blockquote {
      margin: 24px 0;
      padding: 18px 22px;
      border-left: 4px solid var(--gold-500);
      background: var(--cream-100);
      color: var(--navy-700);
    }
    .lawyer-case-original-content img {
      display: block;
      width: auto;
      max-width: 100%;
      height: auto;
      margin: 28px auto;
      border-radius: var(--radius-md);
    }
    .lawyer-case-original-content a {
      color: var(--gold-700);
      text-decoration: underline;
    }
    .lawyer-case-notice {
      padding-top: 24px;
      border-top: 1px solid var(--cream-300);
      color: var(--gray-500);
      font-size: 13px;
      line-height: 1.7;
    }
    .lawyer-case-source {
      margin-top: 28px;
      color: var(--gray-500);
      font-size: 14px;
    }
    .lawyer-case-source a {
      color: var(--gold-700);
      text-decoration: underline;
    }
    .lawyer-case-navigation {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 44px;
      padding-top: 28px;
      border-top: 1px solid var(--cream-300);
    }
    .lawyer-case-pager {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 18px;
    }
    .lawyer-case-pager a {
      color: var(--navy-700);
      font-weight: 600;
    }
    .lawyer-case-pager a:hover {
      color: var(--gold-700);
    }

    /* === 时间线 === */
    .timeline {
      position: relative;
      padding-left: 28px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 4px;
      bottom: 4px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold-500) 0%, var(--cream-300) 100%);
    }
    .timeline-item {
      position: relative;
      padding-bottom: 28px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -24px;
      top: 4px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gradient-gold);
      border: 2px solid var(--white);
      box-shadow: 0 0 0 2px var(--gold-300);
    }
    .timeline-item .year {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 700;
      color: var(--navy-800);
      margin-bottom: 4px;
    }
    .timeline-item .title {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy-700);
      margin-bottom: 4px;
    }
    .timeline-item .desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* === 荣誉奖项 === */
    .awards-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .award-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--cream-300);
      transition: all 0.3s var(--ease-out);
    }
    .award-item:hover {
      border-color: var(--gold-400);
      transform: translateX(4px);
    }
    .award-item .medal {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-300) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .award-item .award-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-700);
    }
    .award-item .award-year {
      font-size: 13px;
      color: var(--gold-600);
      font-weight: 600;
    }

    /* === 文章列表 === */
    .article-list {}
    .article-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--cream-300);
      transition: all 0.3s var(--ease-out);
    }
    .article-item:last-child { border-bottom: none; }
    .article-item:hover { padding-left: 8px; }
    .article-item .date {
      font-size: 13px;
      color: var(--gold-600);
      font-weight: 600;
      white-space: nowrap;
      width: 100px;
    }
    .article-item .title {
      font-size: 15px;
      color: var(--navy-700);
      font-weight: 500;
    }
    .article-item:hover .title { color: var(--gold-600); }

    /* === 社会职务 === */
    .member-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .member-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px;
      background: var(--cream-100);
      border-radius: var(--radius-sm);
      font-size: 14px;
      color: var(--navy-700);
      font-weight: 500;
    }
    .member-item::before {
      content: '✦';
      color: var(--gold-500);
    }

    /* === FAQ === */
    .lawyer-faq-item {
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
      background: var(--white);
      transition: all 0.3s var(--ease-out);
    }
    .lawyer-faq-item.active {
      border-color: var(--gold-400);
      box-shadow: var(--shadow-sm);
    }
    .lawyer-faq-q {
      padding: 20px 24px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy-800);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s var(--ease-out);
    }
    .lawyer-faq-q:hover { background: var(--cream-100); }
    .lawyer-faq-q .arrow {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s var(--ease-out);
      color: var(--gold-600);
      font-size: 18px;
    }
    .lawyer-faq-item.active .arrow { transform: rotate(45deg); }
    .lawyer-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out);
    }
    .lawyer-faq-item.active .lawyer-faq-a { max-height: 300px; }
    .lawyer-faq-a p {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.8;
    }
    .lawyer-profile-source {
      margin-top: -24px;
      padding-top: 18px;
      border-top: 1px solid var(--cream-300);
      color: var(--gray-500);
      font-size: 13px;
      line-height: 1.8;
    }
    .lawyer-profile-source a {
      color: var(--navy-700);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .lawyer-profile-source a:hover { color: var(--gold-700); }

    /* === 侧边栏 === */
    .lawyer-sidebar {
      position: sticky;
      top: 90px;
      align-self: start;
    }
    .sidebar-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 28px;
      margin-bottom: 24px;
      border: 1px solid var(--cream-300);
    }
    .sidebar-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy-800);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--gold-300);
    }
    .sidebar-card .info-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px solid var(--cream-200);
    }
    .sidebar-card .info-row:last-child { border-bottom: none; }
    .sidebar-card .info-row .key { color: var(--gray-500); }
    .sidebar-card .info-row .val { color: var(--navy-700); font-weight: 500; }
    .sidebar-cta {
      background: var(--gradient-navy);
      border-radius: var(--radius-md);
      padding: 28px;
      text-align: center;
      color: var(--white);
    }
    .sidebar-cta h4 {
      color: var(--white);
      border-bottom: none;
      font-size: 18px;
      margin-bottom: 8px;
    }
    .sidebar-cta p {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 20px;
    }
    .sidebar-cta .btn {
      display: inline-block;
      background: var(--gradient-gold);
      color: var(--navy-900);
      padding: 12px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s var(--ease-out);
    }
    .sidebar-cta .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .sidebar-lawyer-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--cream-200);
      transition: all 0.3s var(--ease-out);
    }
    .sidebar-lawyer-item:last-child { border-bottom: none; }
    .sidebar-lawyer-item:hover { padding-left: 6px; }
    .sidebar-lawyer-item .mini-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gradient-navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 16px;
      font-weight: 700;
      color: var(--gold-500);
      flex-shrink: 0;
    }
    .sidebar-lawyer-item .name {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy-700);
    }
    .sidebar-lawyer-item .title {
      font-size: 12px;
      color: var(--gray-400);
    }

    /* === CTA底部 === */
    .lawyer-bottom-cta {
      background: var(--gradient-navy);
      padding: 60px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .lawyer-bottom-cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 50% 100%, rgba(200,165,91,0.1) 0%, transparent 60%);
    }
    .lawyer-bottom-cta h2 {
      font-family: var(--font-serif);
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      position: relative;
    }
    .lawyer-bottom-cta p {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 28px;
      position: relative;
    }
    .lawyer-bottom-cta .btn {
      display: inline-block;
      background: var(--gradient-gold);
      color: var(--navy-900);
      padding: 16px 40px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      transition: all 0.3s var(--ease-out);
      box-shadow: var(--shadow-gold);
    }
    .lawyer-bottom-cta .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200,165,91,0.4);
    }

    /* === 响应式 === */
    @media (max-width: 1024px) {
      .lawyer-hero-grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: center; }
      .lawyer-info-block { text-align: center; }
      .lawyer-info-block .lawyer-tags { justify-content: center; }
      .lawyer-hero-stats { justify-content: center; }
      .lawyer-hero-cta { justify-content: center; }
      .lawyer-body { grid-template-columns: 1fr; }
      .lawyer-sidebar { position: static; }
    }
    @media (max-width: 640px) {
      .lawyer-photo-wrap { width: 260px; height: 320px; }
      .lawyer-photo-initial { font-size: 90px; }
      .lawyer-info-block h1 { font-size: 36px; }
      .expertise-grid, .awards-list, .member-list { grid-template-columns: 1fr; }
      .case-detail-card { padding: 20px; gap: 12px; }
      .lawyer-hero-stats { gap: 20px; }
      .lawyer-case-summary,
      .lawyer-case-result-block { padding: 24px 20px; }
      .lawyer-case-original-content h2 { font-size: 22px; }
      .lawyer-case-navigation { align-items: stretch; flex-direction: column; }
      .lawyer-case-navigation .btn { width: 100%; text-align: center; }
      .lawyer-case-pager { justify-content: space-between; }
    }
