/* 球队网格样式 */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
}
.team-logo-container {
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-container img {
    max-height: 90px;
    max-width: 90px;
    object-fit: contain;
}

.team-info {
    padding: 15px;
    border-top: 1px solid #eee;
}

.team-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.team-name-en {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
}

.team-founded {
    font-size: 13px;
    color: #777;
}

.team-details-link {
    display: block;
    padding: 10px 15px;
    text-align: center;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-top: 1px solid #eee;
    font-size: 14px;
    transition: background 0.2s;
}

.team-details-link:hover {
    background: #2d97f9;
    color: #fff;
}

.no-teams {
    text-align: center;
    padding: 40px 0;
    color: #999;
}

.no-teams i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .team-logo-container {
        height: 100px;
    }
    
    .team-logo-container img {
        max-height: 70px;
        max-width: 70px;
    }
    
    .team-name {
        font-size: 14px;
    }
    
    .team-name-en, .team-founded {
        font-size: 12px;
    }
} 