/**
 * 公司介绍部分样式
 */

/* 公司介绍区域容器 */
.about-section {
  padding: 120px 0;
  background-color: #f0f0ff;
  color: #333;
}

.about-section .section-title,
.about-section .section-subtitle {
  color: #333;
}

/* 公司优势网格布局 */
.company-excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  margin-bottom: 80px;
}

/* 让第一个卡片占两行高度 */
.company-excellence-grid .excellence-card:first-child {
  grid-row: span 2;
  background: linear-gradient(to right, #5d6296, #7a7fb7);
  color: #fff;
}

/* 第一个卡片文字都左对齐 */
.company-excellence-grid .excellence-card:first-child .excellence-title,
.company-excellence-grid .excellence-card:first-child .excellence-description {
  text-align: left;
}

/* 卡片样式 */
.excellence-card {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.excellence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
.excellence-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

/* 描述文字样式 */
.excellence-description {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* 特殊强调文字 */
.distinguished-leader {
  color: #ffd700;
  font-weight: 700;
}

/* 第一个卡片特殊样式 */
.company-excellence-grid .excellence-card:first-child .excellence-description {
  color: rgba(255, 255, 255, 0.9);
}

/* 第一个卡片的内容和图片布局 */
.excellence-content {
  margin-bottom: 20px;
}

.excellence-image {
  margin-top: auto;
  text-align: center;
}

.excellence-image img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  border-radius: 5px;
}

/* 客户标题样式 */
.clients-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
  color: #333;
}

.clients-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
}

/* 客户子标题文本样式 - 从BEM文件合并而来 */
.clients-subtitle__text {
  display: block;
}

.clients-subtitle__text--normal {
  font-size: 16px;
}

.clients-subtitle__text--small {
  font-size: 12px;
  color: #666;
}

/* 客户展示容器 */
.clients-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

/* 客户图片容器 */
.clients-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  margin-top: 20px;
  position: relative;
}

/* 客户图片样式 */
.clients-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* 响应式布局调整 - 统一断点 */
@media (max-width: 1000px) {
  .company-excellence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-excellence-grid .excellence-card:first-child {
    grid-column: span 2;
  }

  .clients-container {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .company-excellence-grid {
    grid-template-columns: 1fr;
  }

  .company-excellence-grid .excellence-card:first-child {
    grid-column: 1;
  }

  .excellence-title {
    font-size: 20px;
  }

  .excellence-description {
    font-size: 14px;
  }

  .clients-title {
    font-size: 29px;
  }

  .clients-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .clients-image-container {
    margin-top: 10px;
  }

  .clients-container {
    padding: 0 15px;
  }

  .clients-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .clients-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
