
.league-section-wrap{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin:32px auto;
  max-width:1160px;
  width:94%;
}
.league-card-block{
  background:#ffffff;
  border-radius:18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding:32px 16px;
}
.block-title{
  text-align:center;
  font-size:29px;
  font-weight:600;
  color:#111;
  margin:0 0 30px;
}
.logo-row{
  display:flex;
  justify-content:space-evenly;
  align-items:flex-start;
  /* 禁止换行，移动端强制一行5个 */
  flex-wrap:nowrap;
}
.logo-item{
  text-align:center;
}
.logo-item a{
  text-decoration:none;
  color:#111;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition: transform .25s ease;
}
.logo-item a:hover{
  transform: translateY(-4px);
}
.logo-item img{
  width:78px;
  height:78px;
  object-fit:contain;
  margin-bottom:10px;
}
.logo-name{
  margin:0;
  font-size:17px;
}
/* 移动端适配：缩小logo、字号，保持5个一行不换行 */
@media (max-width:768px){
  .logo-row{
    flex-wrap:nowrap;
  }
  .logo-item img{
    width:42px;
    height:42px;
  }
  .logo-name{
    font-size:12px;
  }
  .block-title{
    font-size:20px;
  }
  .league-card-block{
    padding:20px 8px;
  }
}
