/* 企业风采页专属样式 */

/* ---------- 所获荣誉 ---------- */
.honors-section { padding: 130px 0 70px; background: linear-gradient(180deg, #f2f9ff, #ffffff); } /* 顶部留出固定导航高度 */
.honors-section .mq-container {
  width: calc(100% - 80px);
  max-width: 1123px;
  padding: 0;
}
.honors-grid { margin-top: 46px; }
.honors-grid img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ---------- 媒体报道 ---------- */
.media-section { padding: 60px 0 70px; background: #fff; }
.media-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
.media-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}
.media-thumb {
  flex: 0 0 390px;
  width: 390px;
  aspect-ratio: 2 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #dff0ff;
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-body { 
    flex: 1; 
    min-width: 0;    
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around; }
.media-body h3 {
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-body time { 
  font-weight: 400;
  font-size: 24px;
  color: #666666; 
}

/* ---------- 企业公益预览（复用 .charity 样式 + 补充） ---------- */
.charity-preview { padding: 60px 0 90px; background: #fff; }
.charity-preview .charity-tabs { margin-top: 46px; }
.charity-more {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
}
.charity-more:hover { text-decoration: underline; }

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
  .honors-section .mq-container { width: calc(100% - 40px); }
  .media-grid { grid-template-columns: 1fr; }
  .media-thumb { flex: 0 0 130px; width: 130px; }
  .media-body h3 { font-size: 15px; }
}
