/**
 * 山西诚又诚律师事务所 - 子页面通用样式表
 * ===========================================
 * 作用：关于我们、服务项目、律师团队、新闻中心、联系我们等子页面样式
 * 引用：所有子页面（非首页）都需要引用
 * 依赖：需要先引用 style.css
 * 结构：
 *   1. 页面公共基础样式
 *   2. Banner 区域样式（所有子页面共用）
 *   3. 关于我们页面样式
 *   4. 服务项目页面样式
 *   5. 律师团队页面样式
 *   6. 新闻中心页面样式
 *   7. 联系我们页面样式
 *   8. 响应式适配
 */

/* ===========================================
   1. 页面公共基础样式
   =========================================== */

/* 页面容器 - Banner 在菜单下方，无需预留头部空间 */
.about-page,
.services-page,
.attorneys-page,
.news-page,
.contact-page {
  /* 头部是绝对定位，Banner 从顶部开始 */
  position: relative;
}

/* 浅色背景区域 */
.bg-light {
  background-color: #f9f9f9;
}

/* ===========================================
   2. Banner 区域样式（所有子页面共用）
   =========================================== */
.page-banner {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* 文章页 Banner 高度 */
.article-page .page-banner {
  height: 360px;
}

/* 响应式 Banner 高度 */
@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 60px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
}

/* ===========================================
   3. 关于我们页面样式
   =========================================== */

/* --- 简介区域 --- */
.profile-section {
  background-color: #fff;
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 70px;
  align-items: stretch;
  margin-top: 56px;
  position: relative;
}

.profile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  position: relative;
}

.profile-kicker {
  color: var(--primary-600);
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.profile-heading {
  color: #111827;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 24px;
}

.profile-lead {
  color: #111827;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-left: 24px;
  position: relative;
}

.profile-lead::before {
  background: var(--primary-600);
  content: '';
  height: calc(100% - 14px);
  left: 0;
  position: absolute;
  top: 8px;
  width: 4px;
}

.profile-copy {
  column-gap: 34px;
  columns: 2;
}

.profile-copy p {
  color: #4b5563;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 0;
  font-family: var(--font-sans);
  text-align: justify;
}

.profile-copy p + p {
  margin-top: 0;
}

.profile-image {
  aspect-ratio: 4 / 3;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.profile-image:hover img {
  transform: scale(1.035);
}

.profile-caption {
  background: rgba(255, 255, 255, 0.94);
  bottom: 24px;
  left: 24px;
  padding: 16px 20px;
  position: absolute;
  width: min(360px, calc(100% - 48px));
}

.profile-caption span {
  color: var(--primary-600);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.profile-caption p {
  color: #111827;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  white-space: nowrap;
}

/* --- 优势区域 --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #fdf2f7;
  color: var(--primary-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon {
  background-color: var(--primary-600);
  color: #fff;
  transform: scale(1.1);
}

.adv-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.adv-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* --- 荣誉资质区域 --- */
.honors-section {
  background-color: #fff;
}

.honors-grid {
  column-count: 4;
  column-gap: 30px;
  margin-top: 50px;
}

.honor-card {
  break-inside: avoid;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .honors-grid {
    column-count: 2;
    column-gap: 20px;
  }
  .honor-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .honors-grid {
    column-count: 1;
  }
  .honor-card {
    margin-bottom: 15px;
  }
}

.honor-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.honor-image {
  width: 100%;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-600);
}

.honor-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.honor-card:hover .honor-image img {
  transform: scale(1.05);
}

.honor-content {
  padding: 20px;
  text-align: center;
}

.honor-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.honor-year {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}

/* ===========================================
   4. 服务项目页面样式
   =========================================== */

/* --- 业务领域网格 --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  padding: 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  font-size: 40px;
  color: #d1d5db;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--primary-600);
  transform: translateX(10px);
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.service-items li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-items li i {
  color: var(--primary-600);
  font-size: 12px;
}

/* 卡片底部悬浮红线特效 */
.hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary-600);
  transition: width 0.4s ease;
}

.service-card:hover .hover-line {
  width: 100%;
}

/* --- 为什么选择我们区域 --- */
.why-choose-section {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 100px 0;
}

.why-choose-section .section-title-wrap {
  justify-content: center;
  margin-bottom: 60px;
}

/* 特性卡片网格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(172, 30, 100, 0.08);
  line-height: 1;
  font-family: var(--font-en);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  font-size: 28px;
  color: #fff;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary-600);
  border-radius: 50%;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* 响应式适配 */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .why-choose-section .section-title {
    font-size: 32px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 30px 24px;
  }
}

.intro-p {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: var(--font-sans);
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.philosophy-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.p-icon {
  font-size: 32px;
  color: var(--primary-600);
  margin-top: -4px;
}

.p-text strong {
  display: block;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.p-text span {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.6;
  display: block;
}

.philosophy-image {
  flex: 0 0 45%;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- CTA 区域 --- */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-image: url('/assets/images/banner-4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.85);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-btn {
  font-size: 18px;
  padding: 8px 8px 8px 30px;
}

.cta-btn i {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

/* ===========================================
   5. 律师团队页面样式
   =========================================== */

/* --- 搜索与筛选栏 --- */
.attorneys-section {
  background-color: #f9f9f9;
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  width: 300px;
  border-bottom: 2px solid #ccc;
  transition: border-color 0.3s;
}

.search-box:focus-within {
  border-color: var(--primary-600);
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 5px;
  font-size: 15px;
  outline: none;
}

.search-box button {
  background: transparent;
  border: none;
  color: #666;
  padding: 0 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-box button:hover {
  color: var(--primary-600);
}

.search-result-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
}

.search-result-form {
  width: min(560px, 100%);
  padding: 0 0 10px;
}

.search-result-count {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.search-result-count strong {
  color: var(--primary-600);
  font-weight: 700;
}

.search-empty-state {
  color: #64748b;
  padding: 76px 20px;
  text-align: center;
}

.search-empty-state i {
  color: #cbd5e1;
  display: block;
  font-size: 56px;
  margin-bottom: 20px;
}

.search-empty-state h3 {
  color: #334155;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.search-empty-state p {
  font-size: 15px;
  line-height: 1.8;
}

.insights-page-count {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin: -18px 0 36px;
  text-align: center;
}

.news-grid .empty-state {
  grid-column: 1 / -1;
}

.pagination-more {
  gap: 8px;
  min-width: 104px;
  padding: 0 16px;
  width: auto;
}

/* --- 律师卡片网格 --- */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.attorney-card {
  background: #fff;
  position: relative;
  cursor: pointer;
}

.attorney-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 照片区域与特效 - 比例 2:3 */
.attorney-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: #eee;
}

.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.attorney-card:hover .attorney-photo img {
  transform: scale(1.05);
}

/* 律师信息区域 */
.attorney-info {
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.attorney-info .name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.attorney-info .title {
  font-size: 14px;
  color: #888;
}

.attorney-card:hover .attorney-info .name {
  color: var(--primary-600);
}

/* 底部悬浮线条 */
.attorney-card .hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-600);
  transition: width 0.3s ease;
}

.attorney-card:hover .hover-line {
  width: 100%;
}

.no-results {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 16px;
}

/* --- 加入我们板块 --- */
.join-section {
  background-color: #fff;
}

.join-content {
  display: flex;
  background: #fdfdfd;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.join-text {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.join-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.join-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.join-image {
  flex: 0 0 50%;
}

.join-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ===========================================
   6. 新闻中心页面样式
   =========================================== */

/* --- 资讯分类标签 --- */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 30px;
  font-size: 16px;
  color: #666;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  transition: all 0.3s;
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(172, 30, 100, 0.2);
}

/* --- 资讯网格 --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  text-align: center;
  min-width: 65px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

.news-date .day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
  margin-bottom: 5px;
}

.news-date .month-year {
  display: block;
  font-size: 12px;
  color: #666;
}

.news-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  font-size: 13px;
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.news-card:hover .news-title {
  color: var(--primary-600);
}

.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-more {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  margin-top: auto;
}

.news-more i {
  font-size: 12px;
  transition: transform 0.3s;
}

.news-card:hover .news-more {
  color: var(--primary-600);
}

.news-card:hover .news-more i {
  transform: translateX(5px);
}

.pagination-wrap {
  margin-top: 50px;
}

/* --- 订阅简报板块 --- */
.newsletter-section {
  background-color: #fff;
}

.newsletter-box {
  display: flex;
  background: var(--primary-900);
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.newsletter-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.newsletter-content p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 40px;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-primary {
  padding: 6px 6px 6px 24px;
  white-space: nowrap;
}

.newsletter-image {
  flex: 0 0 45%;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ===========================================
   7. 联系我们页面样式
   =========================================== */

/* --- 联系主体网格 --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-info-wrapper,
.contact-form-wrapper {
  padding: 50px;
  border-top: 4px solid var(--primary-600);
}

/* 左侧联系信息 */
.info-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.info-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.info-item:hover .icon-box {
  background: var(--primary-600);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(172, 30, 100, 0.3);
}

.info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* 右侧留言表单 */
.form-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.form-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.required {
  color: var(--primary-600);
  margin-left: 4px;
}

.submit-btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* --- FAQ 板块 --- */
.faq-section {
  padding-bottom: 80px;
}

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

.faq-item {
  display: flex;
  padding: 40px;
  gap: 25px;
  align-items: flex-start;
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-600);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-text {
  flex: 1;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ===========================================
   8. 响应式适配
   =========================================== */

@media (max-width: 1200px) {
  .attorneys-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  /* 关于我们 */
  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .profile-image {
    width: 100%;
  }
  .profile-copy {
    columns: 1;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* 服务项目 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-content {
    flex-direction: column;
    gap: 40px;
  }
  .philosophy-image {
    width: 100%;
    flex: auto;
  }
  .philosophy-image img {
    aspect-ratio: 16 / 9;
  }

  /* 律师团队 */
  .attorneys-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .join-content {
    flex-direction: column-reverse;
  }
  .join-image {
    width: 100%;
    flex: auto;
  }
  .join-image img {
    aspect-ratio: 16 / 9;
  }

  /* 新闻中心 */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-box {
    flex-direction: column-reverse;
  }
  .newsletter-image {
    flex: auto;
  }
  .newsletter-image img {
    aspect-ratio: 21 / 9;
  }

  /* 联系我们 */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  /* Banner */
  .banner-title {
    font-size: 40px;
  }
  .banner-subtitle {
    font-size: 18px;
  }

  /* 关于我们 */
  .advantages-grid {
    grid-template-columns: 1fr;
  }


  /* 服务项目 */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .cta-content h2 {
    font-size: 28px;
  }

  /* 律师团队 */
  .attorneys-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    justify-content: center;
  }
  .search-box {
    width: 100%;
  }
  .join-text {
    padding: 40px 30px;
  }
  .join-text h2 {
    font-size: 28px;
  }

  /* 新闻中心 */
  .news-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-content {
    padding: 40px 30px;
  }
  .newsletter-content h2 {
    font-size: 28px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn-primary {
    justify-content: center;
  }

  /* 联系我们 */
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-item {
    flex-direction: column;
    padding: 30px 20px;
  }
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* 加入我们 */
  .careers-page .philosophy-features {
    grid-template-columns: 1fr;
  }
  .careers-page .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .careers-page .position-info {
    flex-wrap: wrap;
    gap: 12px;
  }
  .careers-page .contact-info {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   9. 文章详情页样式 (news-detail & insight-detail)
   =========================================== */

.news-detail-page {
  background-color: #fff;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

.news-detail-main {
  min-width: 0;
}

.news-detail-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.news-detail-header {
  padding: 32px;
  border-bottom: 1px solid var(--gray-100);
}

.news-detail-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news-detail-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.news-detail-date,
.news-detail-views {
  font-size: 14px;
  color: var(--gray-500);
}

.news-detail-date i,
.news-detail-views i {
  margin-right: 6px;
}

.news-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.news-detail-author {
  font-size: 14px;
  color: var(--gray-500);
}

.news-detail-author i {
  margin-right: 6px;
}

.news-detail-image {
  width: 100%;
  overflow: hidden;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 文章内容区域 */
.news-detail-content {
  padding: 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.news-detail-content p {
  margin-bottom: 16px;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  margin: 24px 0 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.news-detail-content h1 {
  font-size: 28px;
}

.news-detail-content h2 {
  font-size: 24px;
}

.news-detail-content h3 {
  font-size: 20px;
}

.news-detail-content h4 {
  font-size: 18px;
}

.news-detail-content ul,
.news-detail-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.news-detail-content li {
  margin-bottom: 8px;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.news-detail-content blockquote {
  border-left: 4px solid var(--primary-600);
  padding-left: 20px;
  margin: 20px 0;
  color: #666;
  font-style: italic;
}

/* 文章底部 */
.news-detail-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.news-detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-detail-share span {
  font-size: 14px;
  color: var(--gray-500);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.share-btn:hover {
  background: var(--primary-600);
  color: #fff;
}

/* 侧边栏 */
.news-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 24px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-600);
}

/* 相关文章列表 */
.related-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-news-item {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.related-news-item:hover {
  background: var(--gray-50);
}

.related-news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 8px;
  background: var(--primary-50);
  border-radius: 8px;
}

.related-news-date .day {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
}

.related-news-date .month {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

.related-news-info {
  flex: 1;
  min-width: 0;
}

.related-news-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

.related-news-info .views {
  font-size: 12px;
  color: var(--gray-400);
}

.related-news-info .views i {
  margin-right: 4px;
}

/* 快速导航 */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.quick-link:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.quick-link i {
  font-size: 16px;
  color: var(--primary-600);
}

/* 文章详情页响应式 */
@media (max-width: 1024px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    display: none;
  }

  .news-detail-title {
    font-size: 24px;
  }

  .news-detail-header,
  .news-detail-content {
    padding: 24px;
  }

  .news-detail-footer {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .news-detail-title {
    font-size: 20px;
  }

  .news-detail-meta-top {
    gap: 12px;
  }

  .news-detail-header,
  .news-detail-content {
    padding: 20px;
  }

  .news-detail-content {
    font-size: 15px;
  }

  .news-detail-content h1 {
    font-size: 22px;
  }

  .news-detail-content h2 {
    font-size: 20px;
  }

  .news-detail-content h3 {
    font-size: 18px;
  }
}

/* ===========================================
   10. 新版文章详情页样式 (参考分形宇宙风格)
   =========================================== */

.article-page {
  background-color: #fff;
}

/* 文章容器 */
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
}

/* 文章主体 */
.article-main {
  min-width: 0;
}

/* 文章头部 */
.article-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #898989;
}

.article-author-line {
  color: #aaa;
}

.article-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.article-title {
  font-size: 42px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: "Arial", "Microsoft YaHei", sans-serif;
}

/* 封面图 */
.article-cover {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* 文章内容区域 - 参考分形宇宙风格 */
.article-body {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a5a;
}

.article-body p {
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #5a5a5a;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  color: #363636;
  font-weight: 300;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.article-body h1 {
  font-size: 32px;
}

.article-body h2 {
  font-size: 28px;
}

.article-body h3 {
  font-size: 24px;
}

.article-body h4 {
  font-size: 20px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #5a5a5a;
}

.article-body strong {
  color: #363636;
  font-weight: 600;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.article-body blockquote {
  border-left: 3px solid var(--primary-600);
  padding-left: 20px;
  margin: 24px 0;
  color: #666;
  font-style: italic;
}

/* 文章底部 */
.article-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-share span {
  font-size: 14px;
  color: #898989;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #898989;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.share-btn:hover {
  background: var(--primary-600);
  color: #fff;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-back:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
}

/* 底部横排区域 */
.article-bottom-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.bottom-block {
  margin-bottom: 40px;
}

.bottom-block:last-child {
  margin-bottom: 0;
}

.bottom-heading {
  font-size: 20px;
  font-weight: 400;
  color: #363636;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

/* 相关文章横排网格 */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.3s;
}

.related-card:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.related-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px;
  background: var(--primary-50);
  border-radius: 6px;
}

.related-card-date .day {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-600);
  line-height: 1;
}

.related-card-date .month {
  font-size: 11px;
  color: #898989;
  margin-top: 2px;
}

.related-card-info {
  flex: 1;
  min-width: 0;
}

.related-card-info h4 {
  font-size: 14px;
  font-weight: 400;
  color: #5a5a5a;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

.related-card-info .views {
  font-size: 12px;
  color: #aaa;
}

/* 快速导航横排 */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-nav-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fafafa;
  border-radius: 8px;
  text-decoration: none;
  color: #5a5a5a;
  font-size: 15px;
  transition: all 0.3s;
}

.quick-nav-card:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.quick-nav-card i {
  font-size: 18px;
  color: var(--primary-600);
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .article-container {
    padding: 40px 24px 80px;
  }

  .article-title {
    font-size: 32px;
  }

  .article-body {
    font-size: 15px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .article-container {
    padding: 30px 20px 60px;
  }

  .article-title {
    font-size: 26px;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-body h1 {
    font-size: 24px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .article-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .btn-back {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr;
  }

  .bottom-heading {
    font-size: 18px;
  }

  .thanks-title {
    font-size: 40px;
  }

  .copyright-heading {
    font-size: 20px;
  }
}

/* ===========================================
   文章页版权信息区域
   =========================================== */

.article-copyright-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #f0f0f0;
}

.thanks-title {
  font-size: 56px;
  font-weight: 100;
  color: #7a7a7a;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-family: "Arial", sans-serif;
}

.copyright-divider {
  height: 1px;
  background-color: #d0d0d0;
  width: 100%;
  border: none;
  margin-bottom: 40px;
}

.copyright-heading {
  font-size: 24px;
  font-weight: 300;
  color: #666;
  margin-bottom: 20px;
}

.copyright-text {
  font-size: 14px;
  line-height: 1.8;
  color: #898989;
  text-align: justify;
  margin-bottom: 30px;
}

.copyright-text-en {
  margin-bottom: 40px;
}

.copyright-divider-bottom {
  height: 1px;
  background-color: #d0d0d0;
  width: 100%;
  margin-bottom: 30px;
}

.article-logo-box {
  margin-top: 10px;
  display: inline-block;
}

.article-logo-text {
  font-family: "Century Gothic", "Avant Garde", Arial, sans-serif;
  font-size: 32px;
  color: #999;
  display: inline-flex;
  align-items: baseline;
  font-weight: normal;
  letter-spacing: -1px;
  white-space: nowrap;
}

.article-logo-cn {
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: 400;
  margin-left: 5px;
  letter-spacing: 1px;
}

.trademark {
  font-size: 20px;
  vertical-align: super;
  margin-left: 10px;
}

.article-logo-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-top: 20px;
}

/* ===========================================
   11. 加入我们页面样式
   =========================================== */

/* 人才理念 */
.careers-page .philosophy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.careers-page .philosophy-text {
  text-align: center;
  margin-bottom: 48px;
}

.careers-page .philosophy-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
}

.careers-page .philosophy-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.careers-page .feature-item {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.careers-page .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.careers-page .feature-item i {
  font-size: 36px;
  color: var(--primary-600);
  margin-bottom: 16px;
}

.careers-page .feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.careers-page .feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 招聘职位 */
.careers-page .positions-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.careers-page .position-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 32px;
  transition: all 0.3s ease;
}

.careers-page .position-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.careers-page .position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.careers-page .position-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}

.careers-page .position-type {
  background: var(--primary-600);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.careers-page .position-info {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.careers-page .position-info span {
  font-size: 14px;
  color: #666;
}

.careers-page .position-info i {
  margin-right: 6px;
  color: var(--primary-600);
}

.careers-page .position-desc h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 12px;
}

.careers-page .position-desc h4:first-child {
  margin-top: 0;
}

.careers-page .position-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-page .position-desc li {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.careers-page .position-desc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary-600);
  border-radius: 50%;
}

/* 联系我们 */
.careers-page .contact-section {
  max-width: 800px;
  margin: 0 auto;
}

.careers-page .contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.careers-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}

.careers-page .contact-item i {
  font-size: 24px;
  color: var(--primary-600);
}

.careers-page .contact-item h4 {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.careers-page .contact-item p {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.careers-page .contact-tips {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.careers-page .contact-tips p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.careers-page .contact-tips i {
  color: var(--primary-600);
  margin-right: 8px;
}

/* 响应式 */
@media (max-width: 1024px) {
  .careers-page .philosophy-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-page .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .careers-page .philosophy-features {
    grid-template-columns: 1fr;
  }
  .careers-page .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .careers-page .position-info {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===========================================
   12. 手机端精修
   =========================================== */

@media (max-width: 768px) {
  .page-banner {
    height: 280px;
  }

  .article-page .page-banner {
    height: 240px;
  }

  .banner-text {
    width: 100%;
    padding: 64px 20px 0;
  }

  .banner-title {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .banner-subtitle {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .profile-content {
    gap: 28px;
    margin-top: 28px;
  }

  .profile-text {
    min-height: auto;
  }

  .profile-heading {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 18px;
  }

  .profile-lead {
    font-size: 17px;
    line-height: 1.75;
    padding-left: 16px;
    margin-bottom: 20px;
  }

  .profile-copy p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .profile-image {
    min-height: 240px;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }

  .profile-caption {
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 12px 14px;
  }

  .profile-caption p {
    font-size: 15px;
    white-space: normal;
  }

  .advantages-grid,
  .services-grid,
  .features-grid,
  .news-grid,
  .faq-grid,
  .careers-page .philosophy-features,
  .careers-page .contact-info {
    gap: 18px;
    margin-top: 28px;
  }

  .advantage-card,
  .service-card,
  .feature-card,
  .news-card,
  .faq-item,
  .careers-page .feature-item,
  .careers-page .position-card,
  .careers-page .contact-item,
  .contact-info-wrapper,
  .contact-form-wrapper {
    border-radius: 6px;
  }

  .advantage-card {
    padding: 28px 22px;
  }

  .adv-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .adv-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .honors-grid {
    margin-top: 28px;
  }

  .honor-content {
    padding: 16px;
  }

  .honor-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .service-card {
    padding: 28px 22px;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .service-title,
  .feature-title {
    font-size: 19px;
  }

  .service-desc,
  .feature-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .why-choose-section {
    padding: 52px 0;
  }

  .why-choose-section .section-title-wrap {
    justify-content: flex-start;
    margin-bottom: 28px;
  }

  .feature-card {
    padding: 28px 22px;
  }

  .feature-number {
    top: 16px;
    right: 18px;
    font-size: 40px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .filter-bar {
    margin-bottom: 28px;
  }

  .attorneys-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .attorney-card {
    border-radius: 6px;
  }

  .attorney-info {
    padding: 16px 8px 18px;
  }

  .attorney-info .name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .attorney-info .title {
    font-size: 13px;
    line-height: 1.5;
  }

  .join-content,
  .newsletter-box {
    border-radius: 6px;
    overflow: hidden;
  }

  .join-text {
    padding: 34px 22px;
  }

  .join-text h2,
  .newsletter-content h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .join-text p,
  .newsletter-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .join-image img,
  .newsletter-image img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .category-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 -18px 28px;
    padding: 0 18px 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 8px 18px;
    font-size: 14px;
  }

  .news-card {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  }

  .news-date {
    top: 12px;
    left: 12px;
    min-width: 54px;
    padding: 8px;
  }

  .news-date .day {
    font-size: 20px;
  }

  .news-date .month-year {
    font-size: 11px;
  }

  .news-content {
    padding: 20px;
  }

  .news-category {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .news-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .news-desc {
    margin-bottom: 20px;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .newsletter-content {
    padding: 34px 22px;
  }

  .newsletter-form input {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 30px 22px;
  }

  .info-title,
  .form-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .info-desc,
  .form-desc {
    margin-bottom: 26px;
  }

  .info-list {
    gap: 22px;
  }

  .info-item {
    gap: 14px;
  }

  .icon-box {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .info-content {
    min-width: 0;
  }

  .info-content h4 {
    font-size: 16px;
  }

  .info-content p {
    overflow-wrap: anywhere;
  }

  .form-input,
  .form-textarea {
    min-height: 46px;
    font-size: 15px;
  }

  .submit-btn {
    width: 100%;
  }

  .faq-section {
    padding-bottom: 54px;
  }

  .faq-item {
    gap: 16px;
    padding: 24px 20px;
  }

  .faq-question {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .insights-page-count {
    margin: -12px 0 28px;
    text-align: left;
  }

  .article-container {
    padding: 36px 20px 64px;
  }

  .article-header {
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .article-title {
    font-size: 25px;
    line-height: 1.45;
    color: #4b5563;
  }

  .article-meta {
    align-items: flex-start;
    gap: 10px 14px;
    line-height: 1.6;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .article-body p {
    text-align: left;
  }

  .article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .article-footer {
    align-items: stretch;
  }

  .article-share {
    justify-content: center;
  }

  .related-card,
  .quick-nav-card {
    border-radius: 6px;
  }

  .article-copyright-section {
    margin-top: 54px;
    padding-top: 40px;
  }

  .thanks-title {
    font-size: 38px;
    letter-spacing: 0;
  }

  .article-logo-text {
    max-width: 100%;
    font-size: 22px;
    white-space: normal;
  }

  .careers-page .philosophy-text {
    text-align: left;
    margin-bottom: 28px;
  }

  .careers-page .feature-item,
  .careers-page .position-card,
  .careers-page .contact-item {
    padding: 24px 20px;
  }

  .careers-page .position-title {
    font-size: 20px;
  }

  .careers-page .position-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .page-banner {
    height: 260px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .attorneys-grid {
    gap: 14px;
  }

  .attorney-info .name {
    font-size: 17px;
  }

  .contact-info-wrapper,
  .contact-form-wrapper,
  .service-card,
  .feature-card {
    padding: 26px 18px;
  }
}
