
.sports-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f0f7ff, #f9fcff);
  font-family: Arial, sans-serif;
}

.sports-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sports-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

.sports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.sports-card {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  padding: 25px;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.sports-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff, #e8f4ff);
}

/* 左：需求 */
.sports-need {
  width: 40%;
  color: #1976d2;
}

.sports-need .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* 中间箭头 */
.sports-arrow {
  width: 20%;
  text-align: center;
  font-size: 22px;
  color: #90a4ae;
}

/* 右：解决方案 */
.sports-solution {
  width: 40%;
  text-align: right;
  color: #2e7d32;
}

.sports-solution .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* 标题 */
.sports-box-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* 文本 */
.sports-box-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* 响应式 */
@media(max-width:768px){
  .sports-card {
    flex-direction: column;
    text-align: center;
  }
  .sports-need, .sports-solution {
    width: 100%;
    text-align: center;
  }
  .sports-arrow {
    margin: 10px 0;
  }
}
