/* 下载卡片容器 */
.download-card-wrap {
    display: flex;
    justify-content: center;
    margin: 24px 0;
    width: 100%;
}

/* 卡片主体 */
.download-card {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.download-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* 图标 */
.download-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    overflow: hidden;
}

.download-card-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

/* 内容区域 */
.download-card-info {
    flex: 1;
    min-width: 0;
    margin-right: 12px;
}

.download-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.download-card-source {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 下载按钮 */
.download-card-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.download-card:hover .download-card-btn {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* 响应式 */
@media (max-width: 480px) {
    .download-card {
        padding: 14px 16px;
        max-width: 100%;
    }
    
    .download-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .download-card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .download-card-title {
        font-size: 14px;
    }
    
    .download-card-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}